diff options
| author | Ross Nicoll <[email protected]> | 2017-04-18 13:36:32 +0100 |
|---|---|---|
| committer | Ross Nicoll <[email protected]> | 2019-04-03 05:16:26 +0000 |
| commit | 6d635e8914541f237cdc577bc6632563be543d7b (patch) | |
| tree | b7c42e4d87a90c1e6272632e01e536776d9a73ef /src/bench/block_assemble.cpp | |
| parent | Update DB version to 5.1 (diff) | |
| download | discoin-6d635e8914541f237cdc577bc6632563be543d7b.tar.xz discoin-6d635e8914541f237cdc577bc6632563be543d7b.zip | |
Replace consensus values with Dogecoin equivalents
* Replace chain parameters with Dogecoin values
* Update maximum coins to match Dogecoin
* Disable version 2 block requirement
* Update coinbase maturity to match Dogecoin
Diffstat (limited to 'src/bench/block_assemble.cpp')
| -rw-r--r-- | src/bench/block_assemble.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bench/block_assemble.cpp b/src/bench/block_assemble.cpp index 804120961..b1e11bc60 100644 --- a/src/bench/block_assemble.cpp +++ b/src/bench/block_assemble.cpp @@ -87,7 +87,7 @@ static void AssembleBlock(benchmark::State& state) } // Collect some loose transactions that spend the coinbases of our mined blocks - constexpr size_t NUM_BLOCKS{200}; + constexpr size_t NUM_BLOCKS{400}; std::array<CTransactionRef, NUM_BLOCKS - COINBASE_MATURITY + 1> txs; for (size_t b{0}; b < NUM_BLOCKS; ++b) { CMutableTransaction tx; |