neoneo-go/pkg/vm
Roman Khimov 06f9e1d123 pkg/(crypto|vm): fix GolangCI errcheck warnings
Like:
  Error return value of alg.Write is not checked (from errcheck)

Actually even though the hash.Hash implements an io.Writer interface (that
return meaningful things on .Write()) it has this comment in its
documentation:

// Write (via the embedded io.Writer interface) adds more data to the running hash.
// It never returns an error.

so it should be OK to ignore return results here.
2019-08-12 16:36:06 +03:00
..
csharp-interop-test Interop 2019-03-18 21:58:51 +00:00
stack Merge branch 'vm' into dauTT/vm-XSWAP-XTUCK-DEPTH-DROP-opcode 2019-08-12 13:02:24 +03:00
state.go clarify vm states 2019-03-17 20:21:48 +00:00
vm.go [VM] fix typo 2019-03-18 21:17:43 +00:00
vm_ops.go pkg/vm: go fmt 2019-08-12 16:29:42 +03:00
vm_ops_bitwise.go Implemented bitwise opcodes: 2019-04-04 00:34:21 +02:00
vm_ops_bitwise_test.go pkg/vm: fix all GolangCI warnings about v.executeOp errcheck 2019-08-12 16:25:16 +03:00
vm_ops_exceptions.go VM:Implement THROW opcode (#219) 2019-03-26 21:19:41 +00:00
vm_ops_flow.go Implemented following control flow opcodes: 2019-04-09 01:07:15 +02:00
vm_ops_flow_test.go pkg/vm: fix all GolangCI warnings about v.executeOp errcheck 2019-08-12 16:25:16 +03:00
vm_ops_maths.go Merge branch 'vm' into dauTT/vm-implement-MIN-MAX-WITHIN-opcodes-230 2019-04-03 20:36:54 +02:00
vm_ops_maths_test.go pkg/vm: fix all GolangCI warnings about v.executeOp errcheck 2019-08-12 16:25:16 +03:00
vm_ops_stackmani.go pkg/vm: go fmt 2019-08-12 16:29:42 +03:00
vm_ops_stackmani_test.go pkg/vm: go fmt 2019-08-12 16:29:42 +03:00
vm_test.go VM:Implement THROW opcode (#219) 2019-03-26 21:19:41 +00:00
vmopscrypto.go pkg/(crypto|vm): fix GolangCI errcheck warnings 2019-08-12 16:36:06 +03:00
vmopscrypto_test.go pkg/vm: fix all GolangCI warnings about v.executeOp errcheck 2019-08-12 16:25:16 +03:00