mirror of
https://github.com/lightningnetwork/lnd.git
synced 2024-11-20 02:27:21 +01:00
7 lines
321 B
Go
7 lines
321 B
Go
package lncfg
|
|
|
|
// Routing holds the configuration options for routing.
|
|
type Routing struct {
|
|
AssumeChannelValid bool `long:"assumechanvalid" description:"Skip checking channel spentness during graph validation. This speedup comes at the risk of using an unvalidated view of the network for routing. (default: false)"`
|
|
}
|