Skip to content

Commit

Permalink
fix: check for prague timestmap on pool init (paradigmxyz#11847)
Browse files Browse the repository at this point in the history
  • Loading branch information
mattsse authored Oct 17, 2024
1 parent 76edc38 commit 52848a3
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions crates/transaction-pool/src/validate/eth.rs
Original file line number Diff line number Diff line change
Expand Up @@ -639,6 +639,7 @@ impl EthTransactionValidatorBuilder {
pub fn with_head_timestamp(mut self, timestamp: u64) -> Self {
self.cancun = self.chain_spec.is_cancun_active_at_timestamp(timestamp);
self.shanghai = self.chain_spec.is_shanghai_active_at_timestamp(timestamp);
self.prague = self.chain_spec.is_prague_active_at_timestamp(timestamp);
self
}

Expand Down

0 comments on commit 52848a3

Please sign in to comment.