mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-03-05 14:06:27 -05:00
fuzz: Remove no-op call to get()
This commit is contained in:
parent
fa642286b8
commit
fa4ba04c15
1 changed files with 1 additions and 1 deletions
|
@ -114,7 +114,7 @@ FUZZ_TARGET_INIT(pow_transition, initialize_pow)
|
|||
auto current_block{std::make_unique<CBlockIndex>(header)};
|
||||
current_block->pprev = blocks.empty() ? nullptr : blocks.back().get();
|
||||
current_block->nHeight = height;
|
||||
blocks.emplace_back(std::move(current_block)).get();
|
||||
blocks.emplace_back(std::move(current_block));
|
||||
}
|
||||
auto last_block{blocks.back().get()};
|
||||
unsigned int new_nbits{GetNextWorkRequired(last_block, nullptr, consensus_params)};
|
||||
|
|
Loading…
Add table
Reference in a new issue