mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-07-23 13:16:42 +00:00
cmd/geth: log current key in expandVerkle instead of keylist[0]
This commit is contained in:
parent
4414e2833f
commit
792c2d608e
1 changed files with 1 additions and 1 deletions
|
|
@ -201,7 +201,7 @@ func expandVerkle(ctx *cli.Context) error {
|
|||
}
|
||||
|
||||
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)
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue