From aeac4743ccf292b57f0d02587a33b3fc7300a180 Mon Sep 17 00:00:00 2001 From: Sean Braithwaite Date: Thu, 8 Aug 2019 16:54:25 +0200 Subject: [PATCH] typo fix --- blockchain/v2/routine.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/blockchain/v2/routine.go b/blockchain/v2/routine.go index 1addff468..715be6b4a 100644 --- a/blockchain/v2/routine.go +++ b/blockchain/v2/routine.go @@ -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: