From 3508670c3f34414d5ce1e3feab6b5eb8632073ea Mon Sep 17 00:00:00 2001 From: zhiqiangxu <652732310@qq.com> Date: Mon, 13 May 2024 06:28:54 +0800 Subject: [PATCH] use iota properly (#10505) --- op-node/rollup/sync/config.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/op-node/rollup/sync/config.go b/op-node/rollup/sync/config.go index 3b0b6b21880e..965d7c127cc4 100644 --- a/op-node/rollup/sync/config.go +++ b/op-node/rollup/sync/config.go @@ -14,7 +14,7 @@ type Mode int // It will consolidate the chain as usual. This allows execution clients to snap sync if they are capable of it. const ( CLSync Mode = iota - ELSync Mode = iota + ELSync ) const (