@ -708,16 +708,16 @@ void InitParameterInteraction()
@@ -708,16 +708,16 @@ void InitParameterInteraction()
{
// when specifying an explicit binding address, you want to listen on it
// even when -connect or -proxy is specified
if ( mapArgs . coun t( " -bind " ) ) {
if ( IsArgSe t( " -bind " ) ) {
if ( SoftSetBoolArg ( " -listen " , true ) )
LogPrintf ( " %s: parameter interaction: -bind set -> setting -listen=1 \n " , __func__ ) ;
}
if ( mapArgs . coun t( " -whitebind " ) ) {
if ( IsArgSe t( " -whitebind " ) ) {
if ( SoftSetBoolArg ( " -listen " , true ) )
LogPrintf ( " %s: parameter interaction: -whitebind set -> setting -listen=1 \n " , __func__ ) ;
}
if ( mapArgs . count ( " -connect " ) & & mapMultiArgs [ " -connect " ] . size ( ) > 0 ) {
if ( mapMulti Args . count ( " -connect " ) & & mapMultiArgs . at ( " -connect " ) . size ( ) > 0 ) {
// when only connecting to trusted nodes, do not seed via DNS, or listen by default
if ( SoftSetBoolArg ( " -dnsseed " , false ) )
LogPrintf ( " %s: parameter interaction: -connect set -> setting -dnsseed=0 \n " , __func__ ) ;
@ -725,7 +725,7 @@ void InitParameterInteraction()
@@ -725,7 +725,7 @@ void InitParameterInteraction()
LogPrintf ( " %s: parameter interaction: -connect set -> setting -listen=0 \n " , __func__ ) ;
}
if ( mapArgs . coun t( " -proxy " ) ) {
if ( IsArgSe t( " -proxy " ) ) {
// to protect privacy, do not listen by default if a default proxy server is specified
if ( SoftSetBoolArg ( " -listen " , false ) )
LogPrintf ( " %s: parameter interaction: -proxy set -> setting -listen=0 \n " , __func__ ) ;
@ -748,7 +748,7 @@ void InitParameterInteraction()
@@ -748,7 +748,7 @@ void InitParameterInteraction()
LogPrintf ( " %s: parameter interaction: -listen=0 -> setting -listenonion=0 \n " , __func__ ) ;
}
if ( mapArgs . coun t( " -externalip " ) ) {
if ( IsArgSe t( " -externalip " ) ) {
// if an explicit public IP is specified, do not try to find others
if ( SoftSetBoolArg ( " -discover " , false ) )
LogPrintf ( " %s: parameter interaction: -externalip set -> setting -discover=0 \n " , __func__ ) ;
@ -880,17 +880,19 @@ bool AppInitParameterInteraction()
@@ -880,17 +880,19 @@ bool AppInitParameterInteraction()
// ********************************************************* Step 3: parameter-to-internal-flags
fDebug = ! mapMultiArgs [ " -debug " ] . empty ( ) ;
fDebug = mapMultiArgs . count ( " -debug " ) ;
// Special-case: if -debug=0/-nodebug is set, turn off debugging messages
const vector < string > & categories = mapMultiArgs [ " -debug " ] ;
if ( GetBoolArg ( " -nodebug " , false ) | | find ( categories . begin ( ) , categories . end ( ) , string ( " 0 " ) ) ! = categories . end ( ) )
fDebug = false ;
if ( fDebug ) {
const vector < string > & categories = mapMultiArgs . at ( " -debug " ) ;
if ( GetBoolArg ( " -nodebug " , false ) | | find ( categories . begin ( ) , categories . end ( ) , string ( " 0 " ) ) ! = categories . end ( ) )
fDebug = false ;
}
// Check for -debugnet
if ( GetBoolArg ( " -debugnet " , false ) )
InitWarning ( _ ( " Unsupported argument -debugnet ignored, use -debug=net. " ) ) ;
// Check for -socks - as this is a privacy risk to continue, exit here
if ( mapArgs . coun t( " -socks " ) )
if ( IsArgSe t( " -socks " ) )
return InitError ( _ ( " Unsupported argument -socks found. Setting SOCKS version isn't possible anymore, only SOCKS5 proxies are supported. " ) ) ;
// Check for -tor - as this is a privacy risk to continue, exit here
if ( GetBoolArg ( " -tor " , false ) )
@ -902,7 +904,7 @@ bool AppInitParameterInteraction()
@@ -902,7 +904,7 @@ bool AppInitParameterInteraction()
if ( GetBoolArg ( " -whitelistalwaysrelay " , false ) )
InitWarning ( _ ( " Unsupported argument -whitelistalwaysrelay ignored, use -whitelistrelay and/or -whitelistforcerelay. " ) ) ;
if ( mapArgs . coun t( " -blockminsize " ) )
if ( IsArgSe t( " -blockminsize " ) )
InitWarning ( " Unsupported argument -blockminsize ignored. " ) ;
// Checkmempool and checkblockindex default to true in regtest mode
@ -957,11 +959,11 @@ bool AppInitParameterInteraction()
@@ -957,11 +959,11 @@ bool AppInitParameterInteraction()
// a transaction spammer can cheaply fill blocks using
// 1-satoshi-fee transactions. It should be set above the real
// cost to you of processing a transaction.
if ( mapArgs . coun t( " -minrelaytxfee " ) )
if ( IsArgSe t( " -minrelaytxfee " ) )
{
CAmount n = 0 ;
if ( ! ParseMoney ( mapArgs [ " -minrelaytxfee " ] , n ) | | 0 = = n )
return InitError ( AmountErrMsg ( " minrelaytxfee " , mapArgs [ " -minrelaytxfee " ] ) ) ;
if ( ! ParseMoney ( GetArg ( " -minrelaytxfee " , " " ) , n ) | | 0 = = n )
return InitError ( AmountErrMsg ( " minrelaytxfee " , GetArg ( " -minrelaytxfee " , " " ) ) ) ;
// High fee check is done afterward in CWallet::ParameterInteraction()
: : minRelayTxFee = CFeeRate ( n ) ;
}
@ -995,7 +997,7 @@ bool AppInitParameterInteraction()
@@ -995,7 +997,7 @@ bool AppInitParameterInteraction()
nMaxTipAge = GetArg ( " -maxtipage " , DEFAULT_MAX_TIP_AGE ) ;
fEnableReplacement = GetBoolArg ( " -mempoolreplacement " , DEFAULT_ENABLE_REPLACEMENT ) ;
if ( ( ! fEnableReplacement ) & & mapArgs . coun t( " -mempoolreplacement " ) ) {
if ( ( ! fEnableReplacement ) & & IsArgSe t( " -mempoolreplacement " ) ) {
// Minimal effort at forwards compatibility
std : : string strReplacementModeList = GetArg ( " -mempoolreplacement " , " " ) ; // default is impossible
std : : vector < std : : string > vstrReplacementModes ;
@ -1003,12 +1005,12 @@ bool AppInitParameterInteraction()
@@ -1003,12 +1005,12 @@ bool AppInitParameterInteraction()
fEnableReplacement = ( std : : find ( vstrReplacementModes . begin ( ) , vstrReplacementModes . end ( ) , " fee " ) ! = vstrReplacementModes . end ( ) ) ;
}
if ( ! mapMultiArgs [ " -bip9params " ] . empty ( ) ) {
if ( mapMultiArgs . count ( " -bip9params " ) ) {
// Allow overriding BIP9 parameters for testing
if ( ! chainparams . MineBlocksOnDemand ( ) ) {
return InitError ( " BIP9 parameters may only be overridden on regtest. " ) ;
}
const vector < string > & deployments = mapMultiArgs [ " -bip9params " ] ;
const vector < string > & deployments = mapMultiArgs . at ( " -bip9params " ) ;
for ( auto i : deployments ) {
std : : vector < std : : string > vDeploymentParams ;
boost : : split ( vDeploymentParams , i , boost : : is_any_of ( " : " ) ) ;
@ -1154,11 +1156,13 @@ bool AppInitMain(boost::thread_group& threadGroup, CScheduler& scheduler)
@@ -1154,11 +1156,13 @@ bool AppInitMain(boost::thread_group& threadGroup, CScheduler& scheduler)
// sanitize comments per BIP-0014, format user agent and check total size
std : : vector < string > uacomments ;
BOOST_FOREACH ( string cmt , mapMultiArgs [ " -uacomment " ] )
{
if ( cmt ! = SanitizeString ( cmt , SAFE_CHARS_UA_COMMENT ) )
return InitError ( strprintf ( _ ( " User Agent comment (%s) contains unsafe characters . " ), cmt)) ;
uacomments . push_back ( SanitizeString ( cmt , SAFE_CHARS_UA_COMMENT ) ) ;
if ( mapMultiArgs . count ( " -uacomment " ) ) {
BOOST_FOREACH ( string cmt , mapMultiArgs . at ( " -uacomment " ) )
{
if ( cmt ! = SanitizeString ( cmt , SAFE_CHARS_UA_COMMENT ) )
return InitError ( strprintf ( _ ( " User Agent comment (%s) contains unsafe characters . " ), cmt)) ;
uacomments . push_back ( cmt ) ;
}
}
strSubVersion = FormatSubVersion ( CLIENT_NAME , CLIENT_VERSION , uacomments ) ;
if ( strSubVersion . size ( ) > MAX_SUBVERSION_LENGTH ) {
@ -1166,9 +1170,9 @@ bool AppInitMain(boost::thread_group& threadGroup, CScheduler& scheduler)
@@ -1166,9 +1170,9 @@ bool AppInitMain(boost::thread_group& threadGroup, CScheduler& scheduler)
strSubVersion . size ( ) , MAX_SUBVERSION_LENGTH ) ) ;
}
if ( mapArgs . count ( " -onlynet " ) ) {
if ( mapMulti Args . count ( " -onlynet " ) ) {
std : : set < enum Network > nets ;
BOOST_FOREACH ( const std : : string & snet , mapMultiArgs [ " -onlynet " ] ) {
BOOST_FOREACH ( const std : : string & snet , mapMultiArgs . at ( " -onlynet " ) ) {
enum Network net = ParseNetwork ( snet ) ;
if ( net = = NET_UNROUTABLE )
return InitError ( strprintf ( _ ( " Unknown network specified in -onlynet: '%s' " ) , snet ) ) ;
@ -1181,8 +1185,8 @@ bool AppInitMain(boost::thread_group& threadGroup, CScheduler& scheduler)
@@ -1181,8 +1185,8 @@ bool AppInitMain(boost::thread_group& threadGroup, CScheduler& scheduler)
}
}
if ( mapArgs . count ( " -whitelist " ) ) {
BOOST_FOREACH ( const std : : string & net , mapMultiArgs [ " -whitelist " ] ) {
if ( mapMulti Args . count ( " -whitelist " ) ) {
BOOST_FOREACH ( const std : : string & net , mapMultiArgs . at ( " -whitelist " ) ) {
CSubNet subnet ;
LookupSubNet ( net . c_str ( ) , subnet ) ;
if ( ! subnet . IsValid ( ) )
@ -1234,14 +1238,16 @@ bool AppInitMain(boost::thread_group& threadGroup, CScheduler& scheduler)
@@ -1234,14 +1238,16 @@ bool AppInitMain(boost::thread_group& threadGroup, CScheduler& scheduler)
if ( fListen ) {
bool fBound = false ;
if ( mapArgs . count ( " -bind " ) | | mapArgs . count ( " -white bind " ) ) {
BOOST_FOREACH ( const std : : string & strBind , mapMultiArgs [ " -bind " ] ) {
if ( mapMulti Args . count ( " -bind " ) ) {
BOOST_FOREACH ( const std : : string & strBind , mapMultiArgs . at ( " -bind " ) ) {
CService addrBind ;
if ( ! Lookup ( strBind . c_str ( ) , addrBind , GetListenPort ( ) , false ) )
return InitError ( ResolveErrMsg ( " bind " , strBind ) ) ;
fBound | = Bind ( connman , addrBind , ( BF_EXPLICIT | BF_REPORT_ERROR ) ) ;
}
BOOST_FOREACH ( const std : : string & strBind , mapMultiArgs [ " -whitebind " ] ) {
}
if ( mapMultiArgs . count ( " -whitebind " ) ) {
BOOST_FOREACH ( const std : : string & strBind , mapMultiArgs . at ( " -whitebind " ) ) {
CService addrBind ;
if ( ! Lookup ( strBind . c_str ( ) , addrBind , 0 , false ) )
return InitError ( ResolveErrMsg ( " whitebind " , strBind ) ) ;
@ -1250,7 +1256,7 @@ bool AppInitMain(boost::thread_group& threadGroup, CScheduler& scheduler)
@@ -1250,7 +1256,7 @@ bool AppInitMain(boost::thread_group& threadGroup, CScheduler& scheduler)
fBound | = Bind ( connman , addrBind , ( BF_EXPLICIT | BF_REPORT_ERROR | BF_WHITELIST ) ) ;
}
}
else {
if ( ! mapMultiArgs . count ( " -bind " ) & & ! mapMultiArgs . count ( " -whitebind " ) ) {
struct in_addr inaddr_any ;
inaddr_any . s_addr = INADDR_ANY ;
fBound | = Bind ( connman , CService ( in6addr_any , GetListenPort ( ) ) , BF_NONE ) ;
@ -1260,8 +1266,8 @@ bool AppInitMain(boost::thread_group& threadGroup, CScheduler& scheduler)
@@ -1260,8 +1266,8 @@ bool AppInitMain(boost::thread_group& threadGroup, CScheduler& scheduler)
return InitError ( _ ( " Failed to listen on any port. Use -listen=0 if you want this. " ) ) ;
}
if ( mapArgs . count ( " -externalip " ) ) {
BOOST_FOREACH ( const std : : string & strAddr , mapMultiArgs [ " -externalip " ] ) {
if ( mapMulti Args . count ( " -externalip " ) ) {
BOOST_FOREACH ( const std : : string & strAddr , mapMultiArgs . at ( " -externalip " ) ) {
CService addrLocal ;
if ( Lookup ( strAddr . c_str ( ) , addrLocal , GetListenPort ( ) , fNameLookup ) & & addrLocal . IsValid ( ) )
AddLocal ( addrLocal , LOCAL_MANUAL ) ;
@ -1270,11 +1276,13 @@ bool AppInitMain(boost::thread_group& threadGroup, CScheduler& scheduler)
@@ -1270,11 +1276,13 @@ bool AppInitMain(boost::thread_group& threadGroup, CScheduler& scheduler)
}
}
BOOST_FOREACH ( const std : : string & strDest , mapMultiArgs [ " -seednode " ] )
connman . AddOneShot ( strDest ) ;
if ( mapMultiArgs . count ( " -seednode " ) ) {
BOOST_FOREACH ( const std : : string & strDest , mapMultiArgs . at ( " -seednode " ) )
connman . AddOneShot ( strDest ) ;
}
# if ENABLE_ZMQ
pzmqNotificationInterface = CZMQNotificationInterface : : CreateWithArguments ( mapArgs ) ;
pzmqNotificationInterface = CZMQNotificationInterface : : Create ( ) ;
if ( pzmqNotificationInterface ) {
RegisterValidationInterface ( pzmqNotificationInterface ) ;
@ -1283,7 +1291,7 @@ bool AppInitMain(boost::thread_group& threadGroup, CScheduler& scheduler)
@@ -1283,7 +1291,7 @@ bool AppInitMain(boost::thread_group& threadGroup, CScheduler& scheduler)
uint64_t nMaxOutboundLimit = 0 ; //unlimited unless -maxuploadtarget is set
uint64_t nMaxOutboundTimeframe = MAX_UPLOAD_TIMEFRAME ;
if ( mapArgs . coun t( " -maxuploadtarget " ) ) {
if ( IsArgSe t( " -maxuploadtarget " ) ) {
nMaxOutboundLimit = GetArg ( " -maxuploadtarget " , DEFAULT_MAX_UPLOAD_TARGET ) * 1024 * 1024 ;
}
@ -1515,13 +1523,13 @@ bool AppInitMain(boost::thread_group& threadGroup, CScheduler& scheduler)
@@ -1515,13 +1523,13 @@ bool AppInitMain(boost::thread_group& threadGroup, CScheduler& scheduler)
fHaveGenesis = true ;
}
if ( mapArgs . coun t( " -blocknotify " ) )
if ( IsArgSe t( " -blocknotify " ) )
uiInterface . NotifyBlockTip . connect ( BlockNotifyCallback ) ;
std : : vector < boost : : filesystem : : path > vImportFiles ;
if ( mapArgs . count ( " -loadblock " ) )
if ( mapMulti Args . count ( " -loadblock " ) )
{
BOOST_FOREACH ( const std : : string & strFile , mapMultiArgs [ " -loadblock " ] )
BOOST_FOREACH ( const std : : string & strFile , mapMultiArgs . at ( " -loadblock " ) )
vImportFiles . push_back ( strFile ) ;
}