mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-02-26 07:37:20 +00:00
core/overlay: fix incorrect debug log key/value in LoadTransitionState (#32637)
This commit is contained in:
parent
a9eaf2ffd8
commit
e20b05ec7f
1 changed files with 1 additions and 1 deletions
|
|
@ -97,7 +97,7 @@ func LoadTransitionState(db ethdb.KeyValueReader, root common.Hash, isVerkle boo
|
|||
// Initialize the first transition state, with the "ended"
|
||||
// field set to true if the database was created
|
||||
// as a verkle database.
|
||||
log.Debug("no transition state found, starting fresh", "is verkle", db)
|
||||
log.Debug("no transition state found, starting fresh", "verkle", isVerkle)
|
||||
|
||||
// Start with a fresh state
|
||||
ts = &TransitionState{Ended: isVerkle}
|
||||
|
|
|
|||
Loading…
Reference in a new issue