Skip to content

Commit 432e947

Browse files
committed
chore(chain): fix return statement for temporary bypass of block number 70132
Update the return statement in the conditional check for block number 70132 to ensure proper function execution during testing. This change maintains the temporary bypass for validation as intended until the testnet reset and governance module integration are complete.
1 parent 015e0a3 commit 432e947

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

app/src/chain.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1130,7 +1130,7 @@ impl<DB: ItemStore<MainnetEthSpec>> Chain<DB> {
11301130
) -> Result<(), Error> {
11311131
// TODO: remove this after resetting testnet + integration of governance module
11321132
if unverified_block.message.execution_payload.block_number == 70132 {
1133-
Ok(())
1133+
return Ok(());
11341134
}
11351135

11361136
let (_execution_block, execution_receipts) =

0 commit comments

Comments
 (0)