We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 5e34168 + 432e947 commit 4dcde73Copy full SHA for 4dcde73
app/src/chain.rs
@@ -1128,6 +1128,11 @@ impl<DB: ItemStore<MainnetEthSpec>> Chain<DB> {
1128
unverified_block: &SignedConsensusBlock<MainnetEthSpec>,
1129
prev_payload_hash: ExecutionBlockHash,
1130
) -> Result<(), Error> {
1131
+ // TODO: remove this after resetting testnet + integration of governance module
1132
+ if unverified_block.message.execution_payload.block_number == 70132 {
1133
+ return Ok(());
1134
+ }
1135
+
1136
let (_execution_block, execution_receipts) =
1137
self.get_block_and_receipts(&prev_payload_hash).await?;
1138
0 commit comments