From ea28346f91b65c9882e942d2fcad9cdbaa09d706 Mon Sep 17 00:00:00 2001 From: lightclient <14004106+lightclient@users.noreply.github.com> Date: Mon, 29 Sep 2025 05:44:04 -0600 Subject: [PATCH] params: fix bpo config comments (#32755) Looks like we forgot to update names when copying. --- params/config.go | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/params/config.go b/params/config.go index 0cf3198ff9..ff27b69259 100644 --- a/params/config.go +++ b/params/config.go @@ -377,25 +377,25 @@ var ( Max: 9, UpdateFraction: 5007716, } - // DefaultBPO1BlobConfig is the default blob configuration for the Osaka fork. + // DefaultBPO1BlobConfig is the default blob configuration for the BPO1 fork. DefaultBPO1BlobConfig = &BlobConfig{ Target: 10, Max: 15, UpdateFraction: 8346193, } - // DefaultBPO1BlobConfig is the default blob configuration for the Osaka fork. + // DefaultBPO2BlobConfig is the default blob configuration for the BPO2 fork. DefaultBPO2BlobConfig = &BlobConfig{ Target: 14, Max: 21, UpdateFraction: 11684671, } - // DefaultBPO1BlobConfig is the default blob configuration for the Osaka fork. + // DefaultBPO3BlobConfig is the default blob configuration for the BPO3 fork. DefaultBPO3BlobConfig = &BlobConfig{ Target: 21, Max: 32, UpdateFraction: 20609697, } - // DefaultBPO1BlobConfig is the default blob configuration for the Osaka fork. + // DefaultBPO4BlobConfig is the default blob configuration for the BPO4 fork. DefaultBPO4BlobConfig = &BlobConfig{ Target: 14, Max: 21,