diff options
author | Pieter Wuille <pieter.wuille@gmail.com> | 2012-12-01 00:26:56 +0100 |
---|---|---|
committer | Pieter Wuille <pieter.wuille@gmail.com> | 2012-12-01 00:45:17 +0100 |
commit | 038784b97959c63751bc75c9d1a9456962120ff0 (patch) | |
tree | 7ab0f180da180ff685bb039bd3dc20e48d029e8e | |
parent | 5c37be2db6177b8e6a4990b2efddcbac46b14a3f (diff) |
Enable script verification for reorganized mempool tx
-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 8279924a3c..a63aa74a64 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) |