Skip to content

Commit b088a58

Browse files
committed
++
1 parent fd92945 commit b088a58

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

cmd/migration-checker/main.go

+3-1
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,9 @@ func checkTrieEquality(dbs *dbs, zkRoot, mptRoot common.Hash, label string, leaf
8888
for index, zkKv := range zkLeafs {
8989
mptKv := mptLeafs[index]
9090
leafChecker(fmt.Sprintf("%s key: %s", label, hex.EncodeToString([]byte(zkKv.key))), dbs, zkKv.value, mptKv.value, paranoid)
91-
fmt.Println("Accounts done:", index+1, "/", len(zkLeafs))
91+
if top {
92+
fmt.Println("Accounts done:", index+1, "/", len(zkLeafs))
93+
}
9294
}
9395
}
9496

0 commit comments

Comments
 (0)