1167 | @@ -1168,7 +1168,9 @@ bool AppInitMain(NodeContext& node, interfaces::BlockAndHeaderTipInfo* tip_info)
1168 |
1169 | fListen = args.GetBoolArg("-listen", DEFAULT_LISTEN);
1170 | fDiscover = args.GetBoolArg("-discover", true);
1171 | - const bool ignores_incoming_txs{args.GetBoolArg("-blocksonly", DEFAULT_BLOCKSONLY)};
1172 | +
1173 | + PeerManager::Options peerman_opts{};
1174 | + ApplyArgsManOptions(args, peerman_opts);
unrelated in 8a3159728ae84cb8093e2e9fa5d2c2b0a7d545da: I think peermanager options have nothing to do with addrmanager options, so this could be moved down, closer to where it is used.
Agreed, makes more sense. Will move down if I have to retouch.