mirror of
https://github.com/ElementsProject/elements.git
synced 2026-08-15 12:51:00 +02:00
Fix parameter name typo in ErasePurpose walletdb method.
This commit is contained in:
parent
16e41844e7
commit
603efe9fc4
1 changed files with 2 additions and 2 deletions
|
|
@ -41,9 +41,9 @@ bool CWalletDB::WritePurpose(const std::string& strAddress, const std::string& s
|
|||
return WriteIC(std::make_pair(std::string("purpose"), strAddress), strPurpose);
|
||||
}
|
||||
|
||||
bool CWalletDB::ErasePurpose(const std::string& strPurpose)
|
||||
bool CWalletDB::ErasePurpose(const std::string& strAddress)
|
||||
{
|
||||
return EraseIC(std::make_pair(std::string("purpose"), strPurpose));
|
||||
return EraseIC(std::make_pair(std::string("purpose"), strAddress));
|
||||
}
|
||||
|
||||
bool CWalletDB::WriteTx(const CWalletTx& wtx)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue