diff options
| author | Gavin Andresen <[email protected]> | 2013-01-26 11:27:48 -0800 |
|---|---|---|
| committer | Gavin Andresen <[email protected]> | 2013-01-26 11:27:48 -0800 |
| commit | 434fa60d75f14b667b695654e27f524e3f0c9359 (patch) | |
| tree | 84ed7046c3e2f17082818537e620818a01cc476b /src/wallet.cpp | |
| parent | Merge pull request #2222 from sipa/check288 (diff) | |
| parent | Let limitfreerelay=0 reject ALL free transactions (diff) | |
| download | discoin-434fa60d75f14b667b695654e27f524e3f0c9359.tar.xz discoin-434fa60d75f14b667b695654e27f524e3f0c9359.zip | |
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 8b2f03212..557784e5c 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"); |