Merge pull request #6152

08d9373 Remove unused code from wallet and validation interface (Michael Ford)
This commit is contained in:
Wladimir J. van der Laan
2015-06-05 18:51:35 +02:00
4 changed files with 0 additions and 19 deletions

View File

@@ -776,18 +776,6 @@ void CWallet::SyncTransaction(const CTransaction& tx, const CBlock* pblock)
}
}
void CWallet::EraseFromWallet(const uint256 &hash)
{
if (!fFileBacked)
return;
{
LOCK(cs_wallet);
if (mapWallet.erase(hash))
CWalletDB(strWalletFile).EraseTx(hash);
}
return;
}
isminetype CWallet::IsMine(const CTxIn &txin) const
{