rename manual peers to persistent peers

This commit is contained in:
Anton Kaliaev
2018-01-09 16:18:05 -06:00
parent 37f86f9518
commit e4897b7bdd
27 changed files with 72 additions and 72 deletions

View File

@ -170,7 +170,7 @@ type RPCConfig struct {
// NOTE: This server only supports /broadcast_tx_commit
GRPCListenAddress string `mapstructure:"grpc_laddr"`
// Activate unsafe RPC commands like /dial_manual_peers and /unsafe_flush_mempool
// Activate unsafe RPC commands like /dial_persistent_peers and /unsafe_flush_mempool
Unsafe bool `mapstructure:"unsafe"`
}
@ -206,9 +206,9 @@ type P2PConfig struct {
// We only use these if we cant connect to peers in the addrbook
Seeds string `mapstructure:"seeds"`
// Comma separated list of manual peers to connect to
// Comma separated list of persistent peers to connect to
// We always connect to these
ManualPeers string `mapstructure:"manual_peers"`
PersistentPeers string `mapstructure:"persistent_peers"`
// Skip UPNP port forwarding
SkipUPNP bool `mapstructure:"skip_upnp"`