mirror of
https://github.com/lightningnetwork/lnd.git
synced 2025-10-04 18:54:00 +02:00
multi: remove experimential build flag for assumechanvalid
This commit is contained in:
@@ -1,12 +0,0 @@
|
||||
// +build !experimental
|
||||
|
||||
package routing
|
||||
|
||||
// Conf provides the command line routing configuration. There are no fields in
|
||||
// the production build so that this section is hidden by default.
|
||||
type Conf struct{}
|
||||
|
||||
// UseAssumeChannelValid always returns false when not in experimental builds.
|
||||
func (c *Conf) UseAssumeChannelValid() bool {
|
||||
return false
|
||||
}
|
@@ -1,14 +0,0 @@
|
||||
// +build experimental
|
||||
|
||||
package routing
|
||||
|
||||
// Conf exposes the experimental command line routing configurations.
|
||||
type Conf struct {
|
||||
AssumeChannelValid bool `long:"assumechanvalid" description:"Skip checking channel spentness during graph validation. (default: false)"`
|
||||
}
|
||||
|
||||
// UseAssumeChannelValid returns true if the router should skip checking for
|
||||
// spentness when processing channel updates and announcements.
|
||||
func (c *Conf) UseAssumeChannelValid() bool {
|
||||
return c.AssumeChannelValid
|
||||
}
|
Reference in New Issue
Block a user