diff options
author | Gavin Andresen <gavinandresen@gmail.com> | 2013-01-26 11:27:48 -0800 |
---|---|---|
committer | Gavin Andresen <gavinandresen@gmail.com> | 2013-01-26 11:27:48 -0800 |
commit | 434fa60d75f14b667b695654e27f524e3f0c9359 (patch) | |
tree | 84ed7046c3e2f17082818537e620818a01cc476b /src/wallet.cpp | |
parent | bb5181fcc2e342966cc1c4b5efc98fc012a34fcc (diff) | |
parent | 9c9f5c1303dff0c010e9e68ba7b5619330edfb68 (diff) |
Merge pull request #2182 from gavinandresen/addressoracle
Remove IsFromMe() check in CTxMemPool::accept()
Diffstat (limited to 'src/wallet.cpp')
-rw-r--r-- | src/wallet.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/wallet.cpp b/src/wallet.cpp index 8b2f03212a..557784e5c2 100644 --- a/src/wallet.cpp +++ b/src/wallet.cpp @@ -1278,7 +1278,7 @@ bool CWallet::CommitTransaction(CWalletTx& wtxNew, CReserveKey& reservekey) mapRequestCount[wtxNew.GetHash()] = 0; // Broadcast - if (!wtxNew.AcceptToMemoryPool()) + if (!wtxNew.AcceptToMemoryPool(true, false)) { // This must not fail. The transaction has already been signed and recorded. printf("CommitTransaction() : Error: Transaction not valid"); |