aboutsummaryrefslogtreecommitdiff
path: root/src/node/peerman_args.cpp
blob: b1242d0fdfee58e72a94837d71b0e4fbc6d410f9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#include <node/peerman_args.h>

#include <common/args.h>
#include <net_processing.h>

namespace node {

void ApplyArgsManOptions(const ArgsManager& argsman, PeerManager::Options& options)
{
    if(auto value{argsman.GetBoolArg("-txreconciliation")}) options.reconcile_txs = *value;
}

} // namespace node