mirror of
https://github.com/status-im/nimbus-eth2.git
synced 2025-01-11 06:46:10 +00:00
don't verify BLS signatures in produced blocks (#4184)
This commit is contained in:
parent
3c1caab107
commit
df03d81e3d
@ -532,7 +532,11 @@ proc makeBeaconBlockForHeadAndSlot*(
|
|||||||
effectiveExecutionPayload,
|
effectiveExecutionPayload,
|
||||||
noRollback, # Temporary state - no need for rollback
|
noRollback, # Temporary state - no need for rollback
|
||||||
cache,
|
cache,
|
||||||
verificationFlags = if skip_randao_verification_bool: {skipRandaoVerification} else: {},
|
verificationFlags =
|
||||||
|
if skip_randao_verification_bool:
|
||||||
|
{skipBlsValidation, skipRandaoVerification}
|
||||||
|
else:
|
||||||
|
{skipBlsValidation},
|
||||||
transactions_root =
|
transactions_root =
|
||||||
if transactions_root.isSome:
|
if transactions_root.isSome:
|
||||||
Opt.some transactions_root.get
|
Opt.some transactions_root.get
|
||||||
|
Loading…
x
Reference in New Issue
Block a user