Do not treat fFromMe transaction differently when broadcasting

This commit is contained in:
Pieter Wuille
2013-10-19 17:21:49 +02:00
parent 0d09b3e8b0
commit fe52346450
3 changed files with 0 additions and 35 deletions

View File

@@ -1498,20 +1498,6 @@ void CWallet::PrintWallet(const CBlock& block)
LogPrintf("\n");
}
bool CWallet::GetTransaction(const uint256 &hashTx, CWalletTx& wtx)
{
{
LOCK(cs_wallet);
map<uint256, CWalletTx>::iterator mi = mapWallet.find(hashTx);
if (mi != mapWallet.end())
{
wtx = (*mi).second;
return true;
}
}
return false;
}
bool CWallet::SetDefaultKey(const CPubKey &vchPubKey)
{
if (fFileBacked)