Skip to content

Commit

Permalink
Merge pull request #2829 from OffchainLabs/rm-println
Browse files Browse the repository at this point in the history
Remove probably leftover println
  • Loading branch information
PlasmaPower authored Dec 13, 2024
2 parents 63fac1c + e8988a2 commit 6c20705
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions validator/server_arb/validator_spawner.go
Original file line number Diff line number Diff line change
Expand Up @@ -215,9 +215,8 @@ func (v *ArbitratorSpawner) execute(
}

func (v *ArbitratorSpawner) Launch(entry *validator.ValidationInput, moduleRoot common.Hash) validator.ValidationRun {
println("LAUCHING ARBITRATOR VALIDATION")
v.count.Add(1)
promise := stopwaiter.LaunchPromiseThread[validator.GoGlobalState](v, func(ctx context.Context) (validator.GoGlobalState, error) {
promise := stopwaiter.LaunchPromiseThread(v, func(ctx context.Context) (validator.GoGlobalState, error) {
defer v.count.Add(-1)
return v.execute(ctx, entry, moduleRoot)
})
Expand Down

0 comments on commit 6c20705

Please sign in to comment.