diff options
| author | 21E14 <[email protected]> | 2016-04-29 23:45:20 -0400 |
|---|---|---|
| committer | 21E14 <[email protected]> | 2016-04-30 15:14:22 -0400 |
| commit | c8b92486c4eca1287546b0683b6af3551db1fe67 (patch) | |
| tree | 554c59f0f0b19f190eaa3b44a415542b44355c24 /src/main.h | |
| parent | Merge #7807: Fixed miner test values, gave constants for less error-prone val... (diff) | |
| download | discoin-c8b92486c4eca1287546b0683b6af3551db1fe67.tar.xz discoin-c8b92486c4eca1287546b0683b6af3551db1fe67.zip | |
Remove obsolete reference to CValidationState from UpdateCoins.
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 2c9635bcf..792747a33 100644 --- a/src/main.h +++ b/src/main.h @@ -359,7 +359,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); |