From e80492c0f02cb8c5e07644239add50a315590873 Mon Sep 17 00:00:00 2001 From: Rodrigo Date: Fri, 28 Feb 2025 19:30:06 +0000 Subject: [PATCH] chore(vm): remove unnecesary nolint directives --- vm/vm.go | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/vm/vm.go b/vm/vm.go index 22141b6f58..225d5b318c 100644 --- a/vm/vm.go +++ b/vm/vm.go @@ -242,10 +242,10 @@ func (v *vm) Call(callInfo *CallInfo, blockInfo *BlockInfo, state core.StateRead &cBlockInfo, C.uintptr_t(handle), chainID, - C.ulonglong(maxSteps), //nolint:gocritic - C.uchar(concurrencyModeByte), //nolint:gocritic - cSierraVersion, //nolint:gocritic - C.uchar(structuredErrStackByte), //nolint:gocritic + C.ulonglong(maxSteps), + C.uchar(concurrencyModeByte), + cSierraVersion, + C.uchar(structuredErrStackByte), //nolint:gocritic // don't know why the linter is annoyed ) callInfoPinner.Unpin() C.free(unsafe.Pointer(chainID))