lncfg: hide deprecated routing.assumechanvalid and neutrino.feeurl

This commit is contained in:
yyforyongyu
2024-01-31 15:14:31 +08:00
parent 78d552de22
commit 9adec89fa8
3 changed files with 5 additions and 2 deletions

View File

@@ -4,7 +4,7 @@ package lncfg
//
//nolint:lll
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)"`
AssumeChannelValid bool `long:"assumechanvalid" description:"DEPRECATED: 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)" hidden:"true"`
StrictZombiePruning bool `long:"strictgraphpruning" description:"If true, then the graph will be pruned more aggressively for zombies. In practice this means that edges with a single stale edge will be considered a zombie."`
}