Browse Source

typo fix

pull/3907/head
Sean Braithwaite 5 years ago
parent
commit
aeac4743cc
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      blockchain/v2/routine.go

+ 1
- 1
blockchain/v2/routine.go View File

@ -90,7 +90,7 @@ func (rt *Routine) start() {
rt.metrics.EventsOut.With("routine", rt.name).Add(float64(len(oEvents)))
rt.logger.Info(fmt.Sprintf("%s handled %d events\n", rt.name, len(oEvents)))
for _, event := range oEvents {
rt.logger.Info(fmt.Sprintln("writting back to output"))
rt.logger.Info(fmt.Sprintln("writing back to output"))
rt.out <- event
}
case iEvent, ok := <-rt.errors:


Loading…
Cancel
Save