From d43ad036ae619a99379a509ef7e0180fbffec2b6 Mon Sep 17 00:00:00 2001 From: Shivam Sharma Date: Mon, 14 Aug 2023 16:06:48 +0530 Subject: [PATCH] fix : lint --- consensus/bor/statefull/processor.go | 1 + 1 file changed, 1 insertion(+) diff --git a/consensus/bor/statefull/processor.go b/consensus/bor/statefull/processor.go index 89e3bfafba..039f3daae0 100644 --- a/consensus/bor/statefull/processor.go +++ b/consensus/bor/statefull/processor.go @@ -77,6 +77,7 @@ func ApplyMessage( // about the transaction and calling mechanisms. vmenv := vm.NewEVM(blockContext, vm.TxContext{}, state, chainConfig, vm.Config{}) + // nolint : contextcheck // Apply the transaction to the current state (included in the env) ret, gasLeft, err := vmenv.Call( vm.AccountRef(msg.From()),