diff options
| author | MarcoFalke <[email protected]> | 2019-08-19 17:38:49 -0400 |
|---|---|---|
| committer | MarcoFalke <[email protected]> | 2019-09-03 14:10:25 -0400 |
| commit | faa13539d5262bb7a512e9ff82e80083e04315ee (patch) | |
| tree | dc58809270f4fca0b9a01632980451b7789fb1c2 | |
| parent | Merge #16745: wallet: Translate all initErrors in CreateWalletFromFile (diff) | |
| download | discoin-faa13539d5262bb7a512e9ff82e80083e04315ee.tar.xz discoin-faa13539d5262bb7a512e9ff82e80083e04315ee.zip | |
wallet: Fix documentation around WalletParameterInteraction
| -rw-r--r-- | src/init.cpp | 2 | ||||
| -rw-r--r-- | src/wallet/load.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/init.cpp b/src/init.cpp index ca419c05f..0594ec95a 100644 --- a/src/init.cpp +++ b/src/init.cpp @@ -1106,7 +1106,7 @@ bool AppInitParameterInteraction() if (!ParseMoney(gArgs.GetArg("-minrelaytxfee", ""), n)) { return InitError(AmountErrMsg("minrelaytxfee", gArgs.GetArg("-minrelaytxfee", "")).translated); } - // High fee check is done afterward in WalletParameterInteraction() + // High fee check is done afterward in CWallet::CreateWalletFromFile() ::minRelayTxFee = CFeeRate(n); } else if (incrementalRelayFee > ::minRelayTxFee) { // Allow only setting incrementalRelayFee to control both diff --git a/src/wallet/load.h b/src/wallet/load.h index 81f078fd1..5a62e2930 100644 --- a/src/wallet/load.h +++ b/src/wallet/load.h @@ -17,7 +17,7 @@ class Chain; //! Responsible for reading and validating the -wallet arguments and verifying the wallet database. //! This function will perform salvage on the wallet if requested, as long as only one wallet is -//! being loaded (WalletParameterInteraction forbids -salvagewallet, -zapwallettxes or -upgradewallet with multiwallet). +//! being loaded (WalletInit::ParameterInteraction() forbids -salvagewallet, -zapwallettxes or -upgradewallet with multiwallet). bool VerifyWallets(interfaces::Chain& chain, const std::vector<std::string>& wallet_files); //! Load wallet databases. |