diff --git a/l2geth/cmd/utils/flags.go b/l2geth/cmd/utils/flags.go index 233b988d17..2d4a115477 100644 --- a/l2geth/cmd/utils/flags.go +++ b/l2geth/cmd/utils/flags.go @@ -1116,8 +1116,6 @@ func setEth1(ctx *cli.Context, cfg *rollup.Config) { // UsingOVM // setRollup configures the rollup func setRollup(ctx *cli.Context, cfg *rollup.Config) { - fmt.Println("RollupEnableVerifierFlag.Name", RollupEnableVerifierFlag.Name) - fmt.Println("RollupReadOnlyFlag.Name", RollupReadOnlyFlag.Name) if ctx.GlobalIsSet(RollupEnableVerifierFlag.Name) { cfg.IsVerifier = ctx.GlobalBool(RollupEnableVerifierFlag.Name) } @@ -1157,7 +1155,6 @@ func setRollup(ctx *cli.Context, cfg *rollup.Config) { cfg.SequencerClientHttp = ctx.GlobalString(SequencerClientHttpFlag.Name) } if ctx.GlobalIsSet(RollupReadOnlyFlag.Name) { - fmt.Println(RollupReadOnlyFlag.Name) cfg.IsReadOnly = ctx.GlobalBool(RollupReadOnlyFlag.Name) } } diff --git a/l2geth/rollup/sync_service.go b/l2geth/rollup/sync_service.go index 105facea00..e19b1afbbc 100644 --- a/l2geth/rollup/sync_service.go +++ b/l2geth/rollup/sync_service.go @@ -159,7 +159,6 @@ func NewSyncService(ctx context.Context, cfg Config, txpool *core.TxPool, bc *co // a remote server that indexes the layer one contracts. Place this // code behind this if statement so that this can run without the // requirement of the remote server being up. - fmt.Println(cfg.IsReadOnly) if service.enable && !cfg.IsReadOnly { // Ensure that the rollup client can connect to a remote server // before starting. Retry until it can connect.