mirror of
https://github.com/ElementsProject/elements.git
synced 2026-08-17 13:07:54 +02: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:
commit
285cf7a1a6
13 changed files with 366 additions and 329 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue