cmd/geth: log current key in expandVerkle instead of keylist[0]

This commit is contained in:
Galoretka 2025-09-20 19:36:03 +03:00 committed by GitHub
parent 4414e2833f
commit 792c2d608e
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -201,7 +201,7 @@ func expandVerkle(ctx *cli.Context) error {
} }
for i, key := range keylist { for i, key := range keylist {
log.Info("Reading key", "index", i, "key", keylist[0]) log.Info("Reading key", "index", i, "key", key)
root.Get(key, chaindb.Get) root.Get(key, chaindb.Get)
} }