43 lines
1.2 KiB
Nim
43 lines
1.2 KiB
Nim
# beacon_chain
|
|
# Copyright (c) 2022-2024 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.
|
|
|
|
{.push raises: [].}
|
|
|
|
from ../datatypes/base import Eth1Data
|
|
|
|
type
|
|
BlindedBeaconBlock* = object
|
|
SignedBlindedBeaconBlock* = object
|
|
|
|
func shortLog*(v: BlindedBeaconBlock): auto =
|
|
(
|
|
slot: 0'u64,
|
|
proposer_index: 0'u64,
|
|
parent_root: "",
|
|
state_root: "",
|
|
eth1data: default(Eth1Data),
|
|
graffiti: "",
|
|
proposer_slashings_len: 0,
|
|
attester_slashings_len: 0,
|
|
attestations_len: 0,
|
|
deposits_len: 0,
|
|
voluntary_exits_len: 0,
|
|
sync_committee_participants: 0,
|
|
block_number: 0'u64,
|
|
block_hash: "",
|
|
parent_hash: "",
|
|
fee_recipient: "",
|
|
bls_to_execution_changes_len: 0, # Capella compat
|
|
blob_kzg_commitments_len: 0, # Deneb compat
|
|
)
|
|
|
|
func shortLog*(v: SignedBlindedBeaconBlock): auto =
|
|
(
|
|
blck: shortLog(default(BlindedBeaconBlock)),
|
|
signature: ""
|
|
)
|