@ -367,6 +367,7 @@ std::string HelpMessage(HelpMessageMode mode)
strUsage + = HelpMessageOpt ( " -onion=<ip:port> " , strprintf ( _ ( " Use separate SOCKS5 proxy to reach peers via Tor hidden services (default: %s) " ) , " -proxy " ) ) ;
strUsage + = HelpMessageOpt ( " -onion=<ip:port> " , strprintf ( _ ( " Use separate SOCKS5 proxy to reach peers via Tor hidden services (default: %s) " ) , " -proxy " ) ) ;
strUsage + = HelpMessageOpt ( " -onlynet=<net> " , _ ( " Only connect to nodes in network <net> (ipv4, ipv6 or onion) " ) ) ;
strUsage + = HelpMessageOpt ( " -onlynet=<net> " , _ ( " Only connect to nodes in network <net> (ipv4, ipv6 or onion) " ) ) ;
strUsage + = HelpMessageOpt ( " -permitbaremultisig " , strprintf ( _ ( " Relay non-P2SH multisig (default: %u) " ) , DEFAULT_PERMIT_BAREMULTISIG ) ) ;
strUsage + = HelpMessageOpt ( " -permitbaremultisig " , strprintf ( _ ( " Relay non-P2SH multisig (default: %u) " ) , DEFAULT_PERMIT_BAREMULTISIG ) ) ;
strUsage + = HelpMessageOpt ( " -permitrbf " , strprintf ( _ ( " Permit transaction replacement (default: %u) " ) , DEFAULT_PERMIT_REPLACEMENT ) ) ;
strUsage + = HelpMessageOpt ( " -peerbloomfilters " , strprintf ( _ ( " Support filtering of blocks and transaction with bloom filters (default: %u) " ) , 1 ) ) ;
strUsage + = HelpMessageOpt ( " -peerbloomfilters " , strprintf ( _ ( " Support filtering of blocks and transaction with bloom filters (default: %u) " ) , 1 ) ) ;
if ( showDebug )
if ( showDebug )
strUsage + = HelpMessageOpt ( " -enforcenodebloom " , strprintf ( " Enforce minimum protocol version to limit use of bloom filters (default: %u) " , 0 ) ) ;
strUsage + = HelpMessageOpt ( " -enforcenodebloom " , strprintf ( " Enforce minimum protocol version to limit use of bloom filters (default: %u) " , 0 ) ) ;
@ -1029,6 +1030,7 @@ bool AppInit2(boost::thread_group& threadGroup, CScheduler& scheduler)
nLocalServices | = NODE_BLOOM ;
nLocalServices | = NODE_BLOOM ;
nMaxTipAge = GetArg ( " -maxtipage " , DEFAULT_MAX_TIP_AGE ) ;
nMaxTipAge = GetArg ( " -maxtipage " , DEFAULT_MAX_TIP_AGE ) ;
fPermitReplacement = GetBoolArg ( " -permitrbf " , DEFAULT_PERMIT_REPLACEMENT ) ;
// ********************************************************* Step 4: application initialization: dir lock, daemonize, pidfile, debug log
// ********************************************************* Step 4: application initialization: dir lock, daemonize, pidfile, debug log