mirror of
https://github.com/status-im/nimbus-eth2.git
synced 2025-01-10 14:26:26 +00:00
8b01284b0e
hash_tree_root was turning up when running beacon_node, turns out to be repeated hash_tree_root invocations - this pr brings them back down to normal. this PR caches the root of a block in the SignedBeaconBlock object - this has the potential downside that even invalid blocks will be hashed (as part of deserialization) - later, one could imagine delaying this until checks have passed there's also some cleanup of the `cat=` logs which were applied randomly and haphazardly, and to a large degree are duplicated by other information in the log statements - in particular, topics fulfill the same role
65 lines
2.4 KiB
Nim
65 lines
2.4 KiB
Nim
# beacon_chain
|
|
# Copyright (c) 2018-2019 Status Research & Development GmbH
|
|
# Licensed and distributed under either of
|
|
# * MIT license (license terms in the root directory or at https://opensource.org/licenses/MIT).
|
|
# * Apache v2 license (license terms in the root directory or at https://www.apache.org/licenses/LICENSE-2.0).
|
|
# at your option. This file may not be copied, modified, or distributed except according to those terms.
|
|
|
|
import
|
|
options,
|
|
# Specs
|
|
../../beacon_chain/spec/[datatypes, helpers, signatures, validator],
|
|
# Internals
|
|
../../beacon_chain/[ssz, extras],
|
|
# Mock helpers
|
|
./mock_validator_keys
|
|
|
|
# Routines for mocking blocks
|
|
# ---------------------------------------------------------------
|
|
|
|
proc signMockBlockImpl(
|
|
state: BeaconState,
|
|
signedBlock: var SignedBeaconBlock
|
|
) =
|
|
let block_slot = signedBlock.message.slot
|
|
doAssert state.slot <= block_slot
|
|
|
|
let privkey = MockPrivKeys[signedBlock.message.proposer_index]
|
|
|
|
signedBlock.message.body.randao_reveal = get_epoch_signature(
|
|
state.fork, state.genesis_validators_root, block_slot.compute_epoch_at_slot,
|
|
privkey)
|
|
signedBlock.root = hash_tree_root(signedBlock.message)
|
|
signedBlock.signature = get_block_signature(
|
|
state.fork, state.genesis_validators_root, block_slot,
|
|
signedBlock.root, privkey)
|
|
|
|
proc signMockBlock*(state: BeaconState, signedBlock: var SignedBeaconBlock) =
|
|
signMockBlockImpl(state, signedBlock)
|
|
|
|
proc mockBlock(
|
|
state: BeaconState,
|
|
slot: Slot,
|
|
flags: UpdateFlags = {}): SignedBeaconBlock =
|
|
## TODO don't do this gradual construction, for exception safety
|
|
## Mock a BeaconBlock for the specific slot
|
|
## Skip signature creation if block should not be signed (skipBlsValidation present)
|
|
|
|
var emptyCache = StateCache()
|
|
let proposer_index = get_beacon_proposer_index(state, emptyCache)
|
|
result.message.slot = slot
|
|
result.message.proposer_index = proposer_index.get.uint64
|
|
result.message.body.eth1_data.deposit_count = state.eth1_deposit_index
|
|
|
|
var previous_block_header = state.latest_block_header
|
|
if previous_block_header.state_root == ZERO_HASH:
|
|
previous_block_header.state_root = state.hash_tree_root()
|
|
result.message.parent_root = previous_block_header.hash_tree_root()
|
|
|
|
if skipBlsValidation notin flags:
|
|
signMockBlock(state, result)
|
|
|
|
proc mockBlockForNextSlot*(state: BeaconState, flags: UpdateFlags = {}):
|
|
SignedBeaconBlock =
|
|
mockBlock(state, state.slot + 1, flags)
|