diff options
| author | Pieter Wuille <[email protected]> | 2014-09-14 04:48:32 +0200 |
|---|---|---|
| committer | Pieter Wuille <[email protected]> | 2014-10-02 20:26:58 +0200 |
| commit | e790c370b5971dd096d1bbfd55960ccf71b7594a (patch) | |
| tree | de37518b3fa3c9fe6d3c6b70759f05dde90134fb /src/miner.cpp | |
| parent | Make signature cache optional (diff) | |
| download | discoin-e790c370b5971dd096d1bbfd55960ccf71b7594a.tar.xz discoin-e790c370b5971dd096d1bbfd55960ccf71b7594a.zip | |
Replace SCRIPT_VERIFY_NOCACHE by flag directly to checker
Diffstat (limited to 'src/miner.cpp')
| -rw-r--r-- | src/miner.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/miner.cpp b/src/miner.cpp index 361a2bea4..280349e8c 100644 --- a/src/miner.cpp +++ b/src/miner.cpp @@ -257,7 +257,7 @@ CBlockTemplate* CreateNewBlock(const CScript& scriptPubKeyIn) // policy here, but we still have to ensure that the block we // create only contains transactions that are valid in new blocks. CValidationState state; - if (!CheckInputs(tx, state, view, true, MANDATORY_SCRIPT_VERIFY_FLAGS)) + if (!CheckInputs(tx, state, view, true, MANDATORY_SCRIPT_VERIFY_FLAGS, true)) continue; CTxUndo txundo; |