diff options
author | Wladimir J. van der Laan <laanwj@gmail.com> | 2016-05-09 11:57:16 +0200 |
---|---|---|
committer | Wladimir J. van der Laan <laanwj@gmail.com> | 2016-05-09 11:59:03 +0200 |
commit | e29cfc48fc08ce7317a43d51b861de0fc0c24006 (patch) | |
tree | cbeedfbd22170bc1f405f1ea729c0bae20b6c1e1 /src/main.h | |
parent | f17032f703288d43a76cffe8fa89b87ade9e3074 (diff) | |
parent | c8b92486c4eca1287546b0683b6af3551db1fe67 (diff) |
Merge #7976: Remove obsolete reference to CValidationState from UpdateCoins.
c8b9248 Remove obsolete reference to CValidationState from UpdateCoins. (21E14)
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 bdf7f5a687..3cc16fd8f4 100644 --- a/src/main.h +++ b/src/main.h @@ -338,7 +338,7 @@ bool CheckInputs(const CTransaction& tx, CValidationState &state, const CCoinsVi unsigned int flags, bool cacheStore, std::vector<CScriptCheck> *pvChecks = NULL); /** Apply the effects of this transaction on the UTXO set represented by view */ -void UpdateCoins(const CTransaction& tx, CValidationState &state, CCoinsViewCache &inputs, int nHeight); +void UpdateCoins(const CTransaction& tx, CCoinsViewCache& inputs, int nHeight); /** Context-independent validity checks */ bool CheckTransaction(const CTransaction& tx, CValidationState& state); |