Skip to content

Commit faa1353

Browse files
author
MarcoFalke
committed
wallet: Fix documentation around WalletParameterInteraction
1 parent 6e43129 commit faa1353

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/init.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1106,7 +1106,7 @@ bool AppInitParameterInteraction()
11061106
if (!ParseMoney(gArgs.GetArg("-minrelaytxfee", ""), n)) {
11071107
return InitError(AmountErrMsg("minrelaytxfee", gArgs.GetArg("-minrelaytxfee", "")).translated);
11081108
}
1109-
// High fee check is done afterward in WalletParameterInteraction()
1109+
// High fee check is done afterward in CWallet::CreateWalletFromFile()
11101110
::minRelayTxFee = CFeeRate(n);
11111111
} else if (incrementalRelayFee > ::minRelayTxFee) {
11121112
// Allow only setting incrementalRelayFee to control both

src/wallet/load.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ class Chain;
1717

1818
//! Responsible for reading and validating the -wallet arguments and verifying the wallet database.
1919
//! This function will perform salvage on the wallet if requested, as long as only one wallet is
20-
//! being loaded (WalletParameterInteraction forbids -salvagewallet, -zapwallettxes or -upgradewallet with multiwallet).
20+
//! being loaded (WalletInit::ParameterInteraction() forbids -salvagewallet, -zapwallettxes or -upgradewallet with multiwallet).
2121
bool VerifyWallets(interfaces::Chain& chain, const std::vector<std::string>& wallet_files);
2222

2323
//! Load wallet databases.

0 commit comments

Comments
 (0)