aboutsummaryrefslogtreecommitdiff
path: root/src/main.cpp
diff options
context:
space:
mode:
authorPieter Wuille <pieter.wuille@gmail.com>2012-12-01 00:26:56 +0100
committerPieter Wuille <pieter.wuille@gmail.com>2012-12-01 00:45:17 +0100
commit038784b97959c63751bc75c9d1a9456962120ff0 (patch)
tree7ab0f180da180ff685bb039bd3dc20e48d029e8e /src/main.cpp
parent5c37be2db6177b8e6a4990b2efddcbac46b14a3f (diff)
downloadbitcoin-038784b97959c63751bc75c9d1a9456962120ff0.tar.xz
Enable script verification for reorganized mempool tx
Diffstat (limited to 'src/main.cpp')
-rw-r--r--src/main.cpp2
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)