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
e9f079d Merge bitcoin-core/gui#696: Switch RPCConsole wallet selection to the one most recently opened/restored/created (Hennadii Stepanov)
d5f83e3 Merge bitcoin#28919: build: Fix regression in "ARMv8 CRC32 intrinsics" test (fanquake)
2eda4c3 Merge bitcoin#26899: p2p: set `-dnsseed` and `-listen` false if `maxconnections=0` (Andrew Chow)
7b7d9a8 Merge bitcoin#26955: wallet: permit mintxfee=0 (fanquake)
17fee63 Merge bitcoin#26906: test: add an easy way to run linters locally (MarcoFalke)
126907f Merge bitcoin#26791: ci: Properly set COMMIT_RANGE in lint task (MarcoFalke)
d9e93f8 Merge bitcoin-core/gui#665: Switch to the selected wallet after loading (Hennadii Stepanov)
311799f Merge bitcoin#26183: build: split ARM crc & crypto extension checks (fanquake)
31dbdac Merge bitcoin#26202: ci: Use remote pull/merge ref instead of local git merge (MacroFake)
Pull request description:
## Issue being fixed or feature implemented
Batch of trivial backports
## How Has This Been Tested?
Built locally
## Checklist:
_Go over all the following points, and put an `x` in all the boxes that apply._
- [ ] I have performed a self-review of my own code
- [ ] I have commented my code, particularly in hard-to-understand areas
- [ ] I have added or updated relevant unit/integration/functional/e2e tests
- [ ] I have made corresponding changes to the documentation
- [x] I have assigned this pull request to a milestone _(for repository code-owners and collaborators only)_
ACKs for top commit:
UdjinM6:
utACK e9f079d
knst:
utACK e9f079d
Tree-SHA512: 91b96ba948699eb0a09dba9338ce2b73ce32c855d806a625920aa35c38a4e12e0ca04b87d3f7d0a5c090bc042c97c24b117c389b6377e500f25b8a7d2dfe97fc
argsman.AddArg("-connect=<ip>", "Connect only to the specified node; -noconnect disables automatic connections (the rules for this peer are the same as for -addnode). This option can be specified multiple times to connect to multiple nodes.", ArgsManager::ALLOW_ANY | ArgsManager::NETWORK_ONLY, OptionsCategory::CONNECTION);
557
557
argsman.AddArg("-discover", "Discover own IP addresses (default: 1 when listening and no -externalip or -proxy)", ArgsManager::ALLOW_ANY, OptionsCategory::CONNECTION);
558
558
argsman.AddArg("-dns", strprintf("Allow DNS lookups for -addnode, -seednode and -connect (default: %u)", DEFAULT_NAME_LOOKUP), ArgsManager::ALLOW_ANY, OptionsCategory::CONNECTION);
559
-
argsman.AddArg("-dnsseed", strprintf("Query for peer addresses via DNS lookup, if low on addresses (default: %u unless -connect used)", DEFAULT_DNSSEED), ArgsManager::ALLOW_ANY, OptionsCategory::CONNECTION);
559
+
argsman.AddArg("-dnsseed", strprintf("Query for peer addresses via DNS lookup, if low on addresses (default: %u unless -connect used or -maxconnections=0)", DEFAULT_DNSSEED), ArgsManager::ALLOW_ANY, OptionsCategory::CONNECTION);
560
560
argsman.AddArg("-externalip=<ip>", "Specify your own public address", ArgsManager::ALLOW_ANY, OptionsCategory::CONNECTION);
561
561
argsman.AddArg("-fixedseeds", strprintf("Allow fixed seeds if DNS seeds don't provide peers (default: %u)", DEFAULT_FIXEDSEEDS), ArgsManager::ALLOW_ANY, OptionsCategory::CONNECTION);
562
562
argsman.AddArg("-forcednsseed", strprintf("Always query for peer addresses via DNS lookup (default: %u)", DEFAULT_FORCEDNSSEED), ArgsManager::ALLOW_ANY, OptionsCategory::CONNECTION);
563
-
argsman.AddArg("-listen", strprintf("Accept connections from outside (default: %u if no -proxyor -connect)", DEFAULT_LISTEN), ArgsManager::ALLOW_ANY, OptionsCategory::CONNECTION);
563
+
argsman.AddArg("-listen", strprintf("Accept connections from outside (default: %u if no -proxy, -connect or -maxconnections=0)", DEFAULT_LISTEN), ArgsManager::ALLOW_ANY, OptionsCategory::CONNECTION);
564
564
argsman.AddArg("-listenonion", strprintf("Automatically create Tor onion service (default: %d)", DEFAULT_LISTEN_ONION), ArgsManager::ALLOW_ANY, OptionsCategory::CONNECTION);
565
565
argsman.AddArg("-maxconnections=<n>", strprintf("Maintain at most <n> connections to peers (temporary service connections excluded) (default: %u). This limit does not apply to connections manually added via -addnode or the addnode RPC, which have a separate limit of %u.", DEFAULT_MAX_PEER_CONNECTIONS, MAX_ADDNODE_CONNECTIONS), ArgsManager::ALLOW_ANY, OptionsCategory::CONNECTION);
0 commit comments