From cca85f5d736389b7bcc804f3421abcbe5009e158 Mon Sep 17 00:00:00 2001 From: Manav Darji Date: Mon, 27 Jan 2025 16:19:17 +0530 Subject: [PATCH] consensus/bor: fix lint --- consensus/bor/statefull/processor.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/consensus/bor/statefull/processor.go b/consensus/bor/statefull/processor.go index dd5658a8b9..b2c61b89e7 100644 --- a/consensus/bor/statefull/processor.go +++ b/consensus/bor/statefull/processor.go @@ -100,7 +100,7 @@ func ApplyMessage( log.Error("message execution failed on contract", "msgData", msg.Data) } - // If there's error commiting span, log it here. It won't be reported before because the return value is empty. + // If there's error committing span, log it here. It won't be reported before because the return value is empty. if bytes.Equal(msg.To().Bytes(), validatorContract.Bytes()) && err != nil { log.Error("message execution failed on contract", "err", err) }