You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When the flag stopatheight is set to something greater than zero,
btcd stops immediately after processing the height provided.
Also, we won't let the node start if the current height is equal
or greater than the provided stopatheight.
Copy file name to clipboardExpand all lines: config.go
+1Lines changed: 1 addition & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -172,6 +172,7 @@ type config struct {
172
172
SigNetbool`long:"signet" description:"Use the signet test network"`
173
173
SigNetChallengestring`long:"signetchallenge" description:"Connect to a custom signet network defined by this challenge instead of using the global default signet test network -- Can be specified multiple times"`
174
174
SigNetSeedNode []string`long:"signetseednode" description:"Specify a seed node for the signet network instead of using the global default signet network seed nodes"`
175
+
StopAtHeightint`long:"stopatheight" description:"Stop immediately after the block at the specified height is processed"`
175
176
TestNet3bool`long:"testnet" description:"Use the test network (version 3)"`
176
177
TestNet4bool`long:"testnet4" description:"Use the test network (version 4)"`
177
178
TorIsolationbool`long:"torisolation" description:"Enable Tor stream isolation by randomizing user credentials for each connection."`
0 commit comments