Remove unused code from wallet and validation interface

Fixes #6109
This commit is contained in:
Michael Ford
2015-05-18 17:11:06 +08:00
parent 26e08a16a6
commit 08d9373e2f
4 changed files with 0 additions and 19 deletions

View File

@@ -775,18 +775,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
{