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,
|
||||
noRollback, # Temporary state - no need for rollback
|
||||
cache,
|
||||
verificationFlags = if skip_randao_verification_bool: {skipRandaoVerification} else: {},
|
||||
verificationFlags =
|
||||
if skip_randao_verification_bool:
|
||||
{skipBlsValidation, skipRandaoVerification}
|
||||
else:
|
||||
{skipBlsValidation},
|
||||
transactions_root =
|
||||
if transactions_root.isSome:
|
||||
Opt.some transactions_root.get
|
||||
|
|
Loading…
Reference in New Issue