From f5e96ef51ad76db413d4598c1c2b5cab6bc198df Mon Sep 17 00:00:00 2001 From: zhiqiangxu <652732310@qq.com> Date: Mon, 4 Mar 2024 22:56:49 +0800 Subject: [PATCH] break early --- op-chain-ops/state/state.go | 1 + 1 file changed, 1 insertion(+) diff --git a/op-chain-ops/state/state.go b/op-chain-ops/state/state.go index 96156f1c13c5..b3788081c0cf 100644 --- a/op-chain-ops/state/state.go +++ b/op-chain-ops/state/state.go @@ -73,6 +73,7 @@ func ComputeStorageSlots(layout *solc.StorageLayout, values StorageValues) ([]*E for _, entry := range layout.Storage { if label == entry.Label { target = entry + break } } if target.Label == "" {