From c03beda0c43d6b10eb4bded3d284666fb2f73fde Mon Sep 17 00:00:00 2001 From: Oliver Townsend Date: Tue, 14 Jan 2025 09:08:19 -0800 Subject: [PATCH] sort alphabetically --- core/chains/evm/gas/rollups/l1_oracle.go | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/core/chains/evm/gas/rollups/l1_oracle.go b/core/chains/evm/gas/rollups/l1_oracle.go index 562852ea4e6..50d5dff6e4e 100644 --- a/core/chains/evm/gas/rollups/l1_oracle.go +++ b/core/chains/evm/gas/rollups/l1_oracle.go @@ -50,14 +50,15 @@ const ( PollPeriod = 6 * time.Second ) +// Sort alphabetically var supportedChainTypes = []chaintype.ChainType{ chaintype.ChainArbitrum, - chaintype.ChainOptimismBedrock, chaintype.ChainKroma, - chaintype.ChainScroll, - chaintype.ChainZkSync, chaintype.ChainMantle, + chaintype.ChainOptimismBedrock, + chaintype.ChainScroll, chaintype.ChainZircuit, + chaintype.ChainZkSync, } func IsRollupWithL1Support(chainType chaintype.ChainType) bool {