From a2c1646107cd3de31f35439a09b7be01ce08650f Mon Sep 17 00:00:00 2001 From: Federico Gimenez Date: Tue, 13 May 2025 10:49:48 +0200 Subject: [PATCH] chore(txpool): update comments about prague activation (#16185) --- crates/transaction-pool/src/validate/eth.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/crates/transaction-pool/src/validate/eth.rs b/crates/transaction-pool/src/validate/eth.rs index 1a3fb61c35..ce1bfbf97e 100644 --- a/crates/transaction-pool/src/validate/eth.rs +++ b/crates/transaction-pool/src/validate/eth.rs @@ -706,13 +706,13 @@ impl EthTransactionValidatorBuilder { // cancun is activated by default cancun: true, - // prague not yet activated + // prague is activated by default prague: true, // osaka not yet activated osaka: false, - // max blob count is cancun by default + // max blob count is prague by default max_blob_count: BlobParams::prague().max_blob_count, } }