diff options
| author | Pieter Wuille <[email protected]> | 2012-12-01 00:26:56 +0100 |
|---|---|---|
| committer | Pieter Wuille <[email protected]> | 2012-12-01 00:45:17 +0100 |
| commit | 038784b97959c63751bc75c9d1a9456962120ff0 (patch) | |
| tree | 7ab0f180da180ff685bb039bd3dc20e48d029e8e /src/main.cpp | |
| parent | Merge pull request #2044 from Diapolo/backupwallet (diff) | |
| download | discoin-038784b97959c63751bc75c9d1a9456962120ff0.tar.xz discoin-038784b97959c63751bc75c9d1a9456962120ff0.zip | |
Enable script verification for reorganized mempool tx
Diffstat (limited to 'src/main.cpp')
| -rw-r--r-- | src/main.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main.cpp b/src/main.cpp index 8279924a3..a63aa74a6 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -1754,7 +1754,7 @@ bool SetBestChain(CBlockIndex* pindexNew) // Resurrect memory transactions that were in the disconnected branch BOOST_FOREACH(CTransaction& tx, vResurrect) - tx.AcceptToMemoryPool(false); + tx.AcceptToMemoryPool(); // Delete redundant memory transactions that are in the connected branch BOOST_FOREACH(CTransaction& tx, vDelete) |