mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-11-11 14:38:29 +01:00
Merge pull request #3412
c3a7f51Move `verifymessage` from rpcwallet to rpcmisc (Wladimir J. van der Laan)723a03dMove `createmultisig` from rpcwallet to rpcmisc (Wladimir J. van der Laan)452955fMove `validateaddress` from rpcwallet to rpcmisc (Wladimir J. van der Laan)cd7fa8bMove `nTransactionFee` from main.cpp to wallet.cpp (Wladimir J. van der Laan)a943bdeMove `settxfee` from rpcblockchain to rpcwallet (Wladimir J. van der Laan)16bc9aaMove `getinfo` from rpcnet to rpcmisc (Wladimir J. van der Laan)652e156add new RPC implementation file `rpcmisc.cpp` (Wladimir J. van der Laan)
This commit is contained in:
@@ -535,6 +535,7 @@ bool AppInit2(boost::thread_group& threadGroup, bool fForceServer)
|
||||
return InitError(strprintf(_("Invalid amount for -minrelaytxfee=<amount>: '%s'"), mapArgs["-minrelaytxfee"].c_str()));
|
||||
}
|
||||
|
||||
#ifdef ENABLE_WALLET
|
||||
if (mapArgs.count("-paytxfee"))
|
||||
{
|
||||
if (!ParseMoney(mapArgs["-paytxfee"], nTransactionFee))
|
||||
@@ -543,7 +544,6 @@ bool AppInit2(boost::thread_group& threadGroup, bool fForceServer)
|
||||
InitWarning(_("Warning: -paytxfee is set very high! This is the transaction fee you will pay if you send a transaction."));
|
||||
}
|
||||
|
||||
#ifdef ENABLE_WALLET
|
||||
strWalletFile = GetArg("-wallet", "wallet.dat");
|
||||
#endif
|
||||
// ********************************************************* Step 4: application initialization: dir lock, daemonize, pidfile, debug log
|
||||
|
||||
Reference in New Issue
Block a user