@@ -552,7 +552,7 @@ func (db *cachingDB) SaveTransitionState(root common.Hash) {
552
552
// it has been saved.
553
553
db .TransitionStatePerRoot [root ] = db .CurrentTransitionState .Copy ()
554
554
555
- log . Debug ("saving transition state" , "storage processed" , db .CurrentTransitionState .StorageProcessed , "addr" , db .CurrentTransitionState .CurrentAccountAddress , "slot hash" , db .CurrentTransitionState .CurrentSlotHash , "root" , root , "ended" , db .CurrentTransitionState .ended , "started" , db .CurrentTransitionState .started )
555
+ fmt . Println ("saving transition state" , "storage processed" , db .CurrentTransitionState .StorageProcessed , "addr" , db .CurrentTransitionState .CurrentAccountAddress , "slot hash" , db .CurrentTransitionState .CurrentSlotHash , "root" , root , "ended" , db .CurrentTransitionState .ended , "started" , db .CurrentTransitionState .started )
556
556
}
557
557
}
558
558
@@ -566,7 +566,7 @@ func (db *cachingDB) LoadTransitionState(root common.Hash) {
566
566
// as a verkle database.
567
567
ts , ok := db .TransitionStatePerRoot [root ]
568
568
if ! ok || ts == nil {
569
- log . Debug ("could not find any transition state, starting with a fresh state" , "is verkle" , db .triedb .IsVerkle ())
569
+ fmt . Println ("could not find any transition state, starting with a fresh state" , "is verkle" , db .triedb .IsVerkle ())
570
570
// Start with a fresh state
571
571
ts = & TransitionState {ended : false }
572
572
}
@@ -575,5 +575,5 @@ func (db *cachingDB) LoadTransitionState(root common.Hash) {
575
575
// doesn't get overwritten.
576
576
db .CurrentTransitionState = ts .Copy ()
577
577
578
- log . Debug ("loaded transition state" , "storage processed" , db .CurrentTransitionState .StorageProcessed , "addr" , db .CurrentTransitionState .CurrentAccountAddress , "slot hash" , db .CurrentTransitionState .CurrentSlotHash , "root" , root , "ended" , db .CurrentTransitionState .ended , "started" , db .CurrentTransitionState .started )
578
+ fmt . Println ("loaded transition state" , "storage processed" , db .CurrentTransitionState .StorageProcessed , "addr" , db .CurrentTransitionState .CurrentAccountAddress , "slot hash" , db .CurrentTransitionState .CurrentSlotHash , "root" , root , "ended" , db .CurrentTransitionState .ended , "started" , db .CurrentTransitionState .started )
579
579
}
0 commit comments