We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b4638a6 commit bbbd2fbCopy full SHA for bbbd2fb
1 file changed
crates/common/types/genesis.rs
@@ -719,7 +719,11 @@ impl Genesis {
719
self.block_access_list_hash
720
.unwrap_or(*EMPTY_BLOCK_ACCESS_LIST_HASH),
721
);
722
- let slot_number = self.slot_number;
+
723
+ let slot_number = self
724
+ .config
725
+ .is_amsterdam_activated(self.timestamp)
726
+ .then_some(self.slot_number.unwrap_or(0));
727
728
BlockHeader {
729
parent_hash: H256::zero(),
0 commit comments