Skip to content

Commit 642c35f

Browse files
committed
make linter happy
1 parent 12ec3a6 commit 642c35f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cmd/migration-checker/main.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ func checkTrieEquality(dbs *dbs, zkRoot, mptRoot common.Hash, label string, leaf
105105
mptKey := crypto.Keccak256([]byte(preimageKey))
106106
mptVal, ok := mptLeafMap[string(mptKey)]
107107
if !ok {
108-
panic(fmt.Sprintf("%s key %s (preimage %s) not found in mpt", label, hex.EncodeToString([]byte(mptKey)), hex.EncodeToString([]byte(preimageKey))))
108+
panic(fmt.Sprintf("%s key %s (preimage %s) not found in mpt", label, hex.EncodeToString(mptKey), hex.EncodeToString([]byte(preimageKey))))
109109
}
110110

111111
leafChecker(fmt.Sprintf("%s key: %s", label, hex.EncodeToString([]byte(preimageKey))), dbs, zkValue, mptVal, paranoid)

0 commit comments

Comments
 (0)