diff options
| author | MarcoFalke <[email protected]> | 2019-09-24 11:18:17 -0400 |
|---|---|---|
| committer | MarcoFalke <[email protected]> | 2019-09-24 11:16:05 -0400 |
| commit | fa607c229295e0f0b89d5177b94d3381ab5e37d8 (patch) | |
| tree | 021b986593e57adbd04a752cfeb94aabf17c7acf | |
| parent | Merge #15558: Don't query all DNS seeds at once (diff) | |
| download | discoin-fa607c229295e0f0b89d5177b94d3381ab5e37d8.tar.xz discoin-fa607c229295e0f0b89d5177b94d3381ab5e37d8.zip | |
validation: Make GetWitnessCommitmentIndex public
| -rw-r--r-- | src/validation.cpp | 4 | ||||
| -rw-r--r-- | src/validation.h | 3 |
2 files changed, 4 insertions, 3 deletions
diff --git a/src/validation.cpp b/src/validation.cpp index 4caee5242..1e7b9c7e6 100644 --- a/src/validation.cpp +++ b/src/validation.cpp @@ -3280,9 +3280,7 @@ bool IsWitnessEnabled(const CBlockIndex* pindexPrev, const Consensus::Params& pa return (height >= params.SegwitHeight); } -// Compute at which vout of the block's coinbase transaction the witness -// commitment occurs, or -1 if not found. -static int GetWitnessCommitmentIndex(const CBlock& block) +int GetWitnessCommitmentIndex(const CBlock& block) { int commitpos = -1; if (!block.vtx.empty()) { diff --git a/src/validation.h b/src/validation.h index 615b83f02..96d249b6d 100644 --- a/src/validation.h +++ b/src/validation.h @@ -384,6 +384,9 @@ bool IsWitnessEnabled(const CBlockIndex* pindexPrev, const Consensus::Params& pa /** When there are blocks in the active chain with missing data, rewind the chainstate and remove them from the block index */ bool RewindBlockIndex(const CChainParams& params) LOCKS_EXCLUDED(cs_main); +/** Compute at which vout of the block's coinbase transaction the witness commitment occurs, or -1 if not found */ +int GetWitnessCommitmentIndex(const CBlock& block); + /** Update uncommitted block structures (currently: only the witness reserved value). This is safe for submitted blocks. */ void UpdateUncommittedBlockStructures(CBlock& block, const CBlockIndex* pindexPrev, const Consensus::Params& consensusParams); |