Skip to content

Commit

Permalink
chore(vm): remove unnecesary nolint directives
Browse files Browse the repository at this point in the history
  • Loading branch information
rodrigo-pino committed Feb 28, 2025
1 parent 72ac58c commit e80492c
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions vm/vm.go
Original file line number Diff line number Diff line change
Expand Up @@ -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))
Expand Down

0 comments on commit e80492c

Please sign in to comment.