diff options
author | Pieter Wuille <sipa@ulyssis.org> | 2013-05-21 02:36:48 +0200 |
---|---|---|
committer | Pieter Wuille <sipa@ulyssis.org> | 2013-05-21 03:53:32 +0200 |
commit | 2ec349bc420d7f4541bf91acf8b830377a1421f3 (patch) | |
tree | aff02045dc8588076202f559a581a23f00859786 /src/main.h | |
parent | 3702f127fdcd9dd6787112a05c11b80607367b39 (diff) |
CreateNewBlock performance improvements
Diffstat (limited to 'src/main.h')
-rw-r--r-- | src/main.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main.h b/src/main.h index cba8421c85..8e71e66cc8 100644 --- a/src/main.h +++ b/src/main.h @@ -659,7 +659,7 @@ public: std::vector<CScriptCheck> *pvChecks = NULL) const; // Apply the effects of this transaction on the UTXO set represented by view - bool UpdateCoins(CValidationState &state, CCoinsViewCache &view, CTxUndo &txundo, int nHeight, const uint256 &txhash) const; + void UpdateCoins(CValidationState &state, CCoinsViewCache &view, CTxUndo &txundo, int nHeight, const uint256 &txhash) const; // Context-independent validity checks bool CheckTransaction(CValidationState &state) const; |