mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-01-25 10:43:19 -03:00
Merge bitcoin/bitcoin#25506: Rephrase error message for invalid value of -peertimeout
748a10e896
rephrase error for invalid timeout (/dev/fd0) Pull request description: Fixes https://github.com/bitcoin/bitcoin/pull/25505#issuecomment-1170479405 ACKs for top commit: kristapsk: re-ACK748a10e896
brunoerg: ACK748a10e896
w0xlt: ACK748a10e896
Tree-SHA512: 5602bb207933375004ffdfb173dd2a8302ea6005fd6f959a02e6670aa784923b4b459755153de4d24efc0fb0510ffc1e08cf8fc0a7d15ecf1529c9aea791d4df
This commit is contained in:
commit
bae8a66d42
1 changed files with 1 additions and 1 deletions
|
@ -966,7 +966,7 @@ bool AppInitParameterInteraction(const ArgsManager& args, bool use_syscall_sandb
|
|||
|
||||
peer_connect_timeout = args.GetIntArg("-peertimeout", DEFAULT_PEER_CONNECT_TIMEOUT);
|
||||
if (peer_connect_timeout <= 0) {
|
||||
return InitError(Untranslated("peertimeout cannot be configured with a negative value."));
|
||||
return InitError(Untranslated("peertimeout must be a positive integer."));
|
||||
}
|
||||
|
||||
if (args.IsArgSet("-minrelaytxfee")) {
|
||||
|
|
Loading…
Add table
Reference in a new issue