mirror of
https://github.com/hl-archive-node/nanoreth.git
synced 2025-12-06 10:59:55 +00:00
fix: check for prague timestmap on pool init (#11847)
This commit is contained in:
@ -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
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user