Skip to content

Commit

Permalink
fix: display conversion status instead of pointer
Browse files Browse the repository at this point in the history
  • Loading branch information
gballet committed May 14, 2024
1 parent ee280de commit 7fd2dce
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cmd/evm/internal/t8ntool/execution.go
Original file line number Diff line number Diff line change
Expand Up @@ -454,7 +454,7 @@ func MakePreState(db ethdb.Database, chainConfig *params.ChainConfig, pre *Prest
// Load the conversion status
log.Info("loading conversion status", "started", pre.Env.Started)
if pre.Env.Started != nil {
log.Info("non-nil started", "started", pre.Env.Started)
log.Info("non-nil started", "started", *pre.Env.Started)
}
sdb.InitTransitionStatus(pre.Env.Started != nil && *pre.Env.Started, pre.Env.Ended != nil && *pre.Env.Ended)
if pre.Env.CurrentAccountAddress != nil {
Expand Down

0 comments on commit 7fd2dce

Please sign in to comment.