Skip to content

Commit f103267

Browse files
committed
updating genesis file
1 parent 6f0ffa2 commit f103267

File tree

1 file changed

+18
-10
lines changed

1 file changed

+18
-10
lines changed

runtime/interop/genesis.go

Lines changed: 18 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -173,16 +173,24 @@ func GethTestnetGenesis(genesis time.Time, cfg *clparams.BeaconChainConfig) *cor
173173
OsakaTime: osakaTime,
174174
DepositContractAddress: common.HexToAddress(cfg.DepositContractAddress),
175175
BlobScheduleConfig: &params.BlobScheduleConfig{
176-
Cancun: &params.BlobConfig{
177-
Target: 3,
178-
Max: 6,
179-
UpdateFraction: 3338477,
180-
},
181-
Prague: &params.BlobConfig{
182-
Target: 6,
183-
Max: 9,
184-
UpdateFraction: 5007716,
185-
},
176+
Cancun: params.DefaultCancunBlobConfig,
177+
Prague: params.DefaultPragueBlobConfig,
178+
Osaka: params.DefaultOsakaBlobConfig,
179+
//BPO1: &params.BlobConfig{
180+
// Target: 9,
181+
// Max: 14,
182+
// UpdateFraction: 8832827,
183+
//},
184+
//BPO2: &params.BlobConfig{
185+
// Target: 14,
186+
// Max: 21,
187+
// UpdateFraction: 13739630,
188+
//},
189+
//BPO3: &params.BlobConfig{
190+
// Target: 21,
191+
// Max: 32,
192+
// UpdateFraction: 20609697,
193+
//},
186194
},
187195
}
188196
da := defaultDepositContractAllocation(cfg.DepositContractAddress)

0 commit comments

Comments
 (0)