Commit edb0068e authored by Ralph Pichler's avatar Ralph Pichler Committed by GitHub

remove disconnect threshold argument (#567)

parent f0844278
......@@ -45,7 +45,6 @@ func (c *command) initStartCmd() (err error) {
optionNameTracingEndpoint = "tracing-endpoint"
optionNameTracingServiceName = "tracing-service-name"
optionNameVerbosity = "verbosity"
optionNameDisconnectThreshold = "disconnect-threshold"
optionNameGlobalPinningEnabled = "global-pinning-enable"
optionNamePaymentThreshold = "payment-threshold"
optionNamePaymentTolerance = "payment-tolerance"
......@@ -133,7 +132,6 @@ Welcome to the Swarm.... Bzzz Bzzzz Bzzzz
TracingEndpoint: c.config.GetString(optionNameTracingEndpoint),
TracingServiceName: c.config.GetString(optionNameTracingServiceName),
Logger: logger,
DisconnectThreshold: c.config.GetUint64(optionNameDisconnectThreshold),
GlobalPinningEnabled: c.config.GetBool(optionNameGlobalPinningEnabled),
PaymentThreshold: c.config.GetUint64(optionNamePaymentThreshold),
PaymentTolerance: c.config.GetUint64(optionNamePaymentTolerance),
......
......@@ -85,7 +85,6 @@ type Options struct {
TracingEnabled bool
TracingEndpoint string
TracingServiceName string
DisconnectThreshold uint64
GlobalPinningEnabled bool
PaymentThreshold uint64
PaymentTolerance uint64
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment