fix: check for prague timestmap on pool init (#11847)

This commit is contained in:
Matthias Seitz
2024-10-17 20:13:05 +02:00
committed by GitHub
parent 76edc38823
commit 52848a352a

View File

@ -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
}