From b093aba682df2454a521cb584fd1a282f34603da Mon Sep 17 00:00:00 2001 From: Oliver Townsend Date: Mon, 13 Jan 2025 17:18:32 -0800 Subject: [PATCH] Add chaintype.ChainZircuit to chaintypes with rollup support --- core/chains/evm/gas/rollups/l1_oracle.go | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/core/chains/evm/gas/rollups/l1_oracle.go b/core/chains/evm/gas/rollups/l1_oracle.go index d3fd5d7538..a9dec743ac 100644 --- a/core/chains/evm/gas/rollups/l1_oracle.go +++ b/core/chains/evm/gas/rollups/l1_oracle.go @@ -44,7 +44,15 @@ const ( PollPeriod = 6 * time.Second ) -var supportedChainTypes = []chaintype.ChainType{chaintype.ChainArbitrum, chaintype.ChainOptimismBedrock, chaintype.ChainKroma, chaintype.ChainScroll, chaintype.ChainZkSync, chaintype.ChainMantle} +var supportedChainTypes = []chaintype.ChainType{ + chaintype.ChainArbitrum, + chaintype.ChainOptimismBedrock, + chaintype.ChainKroma, + chaintype.ChainScroll, + chaintype.ChainZkSync, + chaintype.ChainMantle, + chaintype.ChainZircuit, +} func IsRollupWithL1Support(chainType chaintype.ChainType) bool { return slices.Contains(supportedChainTypes, chainType)