You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -1373,12 +1347,6 @@ type DangerousConfig struct {
1373
1347
1374
1348
// Validate checks that the DataPosterConfig is valid.
1375
1349
func (c*DataPosterConfig) Validate() error {
1376
-
switchc.EnableCellProofs {
1377
-
case"", "auto", "force-enable", "force-disable":
1378
-
// Valid values
1379
-
default:
1380
-
returnfmt.Errorf("invalid enable-cell-proofs value %q (valid: \"\", \"auto\", \"force-enable\", \"force-disable\")", c.EnableCellProofs)
1381
-
}
1382
1350
iflen(c.ReplacementTimes) ==0 {
1383
1351
returnfmt.Errorf("replacement-times must have at least one value")
1384
1352
}
@@ -1439,7 +1407,6 @@ func DataPosterConfigAddOptions(prefix string, f *pflag.FlagSet, defaultDataPost
1439
1407
f.DurationSlice(prefix+".blob-tx-replacement-times", defaultDataPosterConfig.BlobTxReplacementTimes, "comma-separated list of durations since first posting a blob transaction to attempt a replace-by-fee")
1440
1408
f.Float64(prefix+".min-blob-tx-tip-cap-gwei", defaultDataPosterConfig.MinBlobTxTipCapGwei, "the minimum tip cap to post EIP-4844 blob carrying transactions at")
1441
1409
f.Float64(prefix+".max-blob-tx-tip-cap-gwei", defaultDataPosterConfig.MaxBlobTxTipCapGwei, "the maximum tip cap to post EIP-4844 blob carrying transactions at")
1442
-
f.String(prefix+".enable-cell-proofs", defaultDataPosterConfig.EnableCellProofs, "enable cell proofs in blob transactions for Fusaka compatibility. Valid values: \"\" or \"auto\" (auto-detect based on L1 Osaka fork), \"force-enable\", \"force-disable\"")
1443
1410
}
1444
1411
1445
1412
// We intentionally don't expose an option to configure Post4844Blobs.
@@ -1475,7 +1442,6 @@ var DefaultDataPosterConfig = DataPosterConfig{
1475
1442
MaxFeeBidMultipleBips: arbmath.OneInUBips*10,
1476
1443
NonceRbfSoftConfs: 1,
1477
1444
Post4844Blobs: false,
1478
-
EnableCellProofs: "", // empty string = auto-detect based on L1 Osaka fork
1479
1445
AllocateMempoolBalance: true,
1480
1446
UseDBStorage: true,
1481
1447
UseNoOpStorage: false,
@@ -1497,7 +1463,6 @@ var DefaultDataPosterConfigForValidator = func() DataPosterConfig {
1497
1463
config.BlobTxReplacementTimes=nil
1498
1464
config.MinBlobTxTipCapGwei=0
1499
1465
config.MaxBlobTxTipCapGwei=0
1500
-
config.EnableCellProofs=""
1501
1466
returnconfig
1502
1467
}()
1503
1468
@@ -1517,7 +1482,6 @@ var TestDataPosterConfig = DataPosterConfig{
1517
1482
MaxFeeBidMultipleBips: arbmath.OneInUBips*10,
1518
1483
NonceRbfSoftConfs: 1,
1519
1484
Post4844Blobs: false,
1520
-
EnableCellProofs: "", // empty string = auto-detect based on L1 Osaka fork
0 commit comments