We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 872e0cd commit ff85526Copy full SHA for ff85526
execution/stagedsync/exec3.go
@@ -126,6 +126,12 @@ func ExecV3(ctx context.Context,
126
logger log.Logger) (execErr error) {
127
isBlockProduction := execStage.SyncMode() == stages.ModeBlockProduction
128
isForkValidation := execStage.SyncMode() == stages.ModeForkValidation
129
+ if execStage.state.unwindPoint != nil {
130
+ fmt.Println("unwindPoint", *execStage.state.unwindPoint)
131
+ }
132
+ if execStage.state.prevUnwindPoint != nil {
133
+ fmt.Println("previousUnwindPoint", *execStage.state.prevUnwindPoint)
134
135
isApplyingBlocks := execStage.SyncMode() == stages.ModeApplyingBlocks
136
initialCycle := execStage.CurrentSyncCycle.IsInitialCycle
137
hooks := cfg.vmConfig.Tracer
0 commit comments