Skip to content

Commit 84dcb45

Browse files
committed
Bugfix: wallet: Fix warningStr, errorStr argument order
1 parent 008c360 commit 84dcb45

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/wallet/walletdb.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -825,7 +825,7 @@ bool CWalletDB::VerifyEnvironment(const std::string& walletFile, const fs::path&
825825

826826
bool CWalletDB::VerifyDatabaseFile(const std::string& walletFile, const fs::path& dataDir, std::string& warningStr, std::string& errorStr)
827827
{
828-
return CDB::VerifyDatabaseFile(walletFile, dataDir, errorStr, warningStr, CWalletDB::Recover);
828+
return CDB::VerifyDatabaseFile(walletFile, dataDir, warningStr, errorStr, CWalletDB::Recover);
829829
}
830830

831831
bool CWalletDB::WriteDestData(const std::string &address, const std::string &key, const std::string &value)

0 commit comments

Comments
 (0)