From 470b4488a1c415659bedf3a8b9da9c635d6eeb2b Mon Sep 17 00:00:00 2001 From: Mateusz Sekara Date: Wed, 23 Oct 2024 13:05:49 +0200 Subject: [PATCH] Linter fixes --- core/scripts/ccip/liquiditymanager/opstack/prove_withdrawal.go | 1 + core/scripts/ccip/liquiditymanager/opstack/send_to_l2.go | 2 ++ 2 files changed, 3 insertions(+) diff --git a/core/scripts/ccip/liquiditymanager/opstack/prove_withdrawal.go b/core/scripts/ccip/liquiditymanager/opstack/prove_withdrawal.go index 1718b33984..fe479a49e2 100644 --- a/core/scripts/ccip/liquiditymanager/opstack/prove_withdrawal.go +++ b/core/scripts/ccip/liquiditymanager/opstack/prove_withdrawal.go @@ -58,6 +58,7 @@ func ProveWithdrawal( helpers.ConfirmTXMined(context.Background(), l1Client, tx, int64(l1ChainID), "ProveWithdrawal") } +// nolint func ProveWithdrawalViaRebalancer( env multienv.Env, l1ChainID, diff --git a/core/scripts/ccip/liquiditymanager/opstack/send_to_l2.go b/core/scripts/ccip/liquiditymanager/opstack/send_to_l2.go index 22a280858c..1aa93804bf 100644 --- a/core/scripts/ccip/liquiditymanager/opstack/send_to_l2.go +++ b/core/scripts/ccip/liquiditymanager/opstack/send_to_l2.go @@ -23,6 +23,7 @@ var ( rebalancerABI = abihelpers.MustParseABI(liquiditymanager.LiquidityManagerMetaData.ABI) ) +// nolint func SendToL2( env multienv.Env, l1ChainID uint64, @@ -115,6 +116,7 @@ func scaleGasCost(gasCost uint64) uint64 { return gasCost * 18 / 10 } +// nolint func SendToL2ViaRebalancer( env multienv.Env, l1ChainID,