diff options
| author | MarcoFalke <[email protected]> | 2017-09-27 14:23:15 +0200 |
|---|---|---|
| committer | MarcoFalke <[email protected]> | 2017-09-27 14:23:39 +0200 |
| commit | 69c7ecef405d168f658a9cc7996da84c17f61e66 (patch) | |
| tree | 47dcd620e6958e74d9b6d714752a42a5a0e410a1 /src | |
| parent | Merge #11015: [Qt] Add delay before filtering transactions (diff) | |
| parent | Fix parameter name typo in ErasePurpose walletdb method. (diff) | |
| download | discoin-69c7ecef405d168f658a9cc7996da84c17f61e66.tar.xz discoin-69c7ecef405d168f658a9cc7996da84c17f61e66.zip | |
Merge #11408: Trivial: Fix parameter name typo in ErasePurpose walletdb method
603efe9fc Fix parameter name typo in ErasePurpose walletdb method. (Pierre Rochard)
Pull request description:
The header file has the correct method signature and the one usage in CWallet::DelAddressBook is correctly passing in EncodeDestination(address)
Tree-SHA512: ee0808a74111fd23a1c47ba5ab51de151fdd33a01d92895671e562ac184cbcb33180a3ff26c22e5717595592097b9fa33deca9878d89ce8d34687f09cfadfcf0
Diffstat (limited to 'src')
| -rw-r--r-- | src/wallet/walletdb.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/wallet/walletdb.cpp b/src/wallet/walletdb.cpp index 52370a8eb..b7f873c1e 100644 --- a/src/wallet/walletdb.cpp +++ b/src/wallet/walletdb.cpp @@ -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) |