From 72ec354039cb272a2b52f55304f8a2b77c0b896e Mon Sep 17 00:00:00 2001 From: Anna Shaleva Date: Mon, 4 Apr 2022 17:04:34 +0300 Subject: [PATCH] compiler: add test for murmur32 interop API --- pkg/compiler/native_test.go | 1 + 1 file changed, 1 insertion(+) diff --git a/pkg/compiler/native_test.go b/pkg/compiler/native_test.go index a0dc6c2d4..adf907fc5 100644 --- a/pkg/compiler/native_test.go +++ b/pkg/compiler/native_test.go @@ -183,6 +183,7 @@ func TestNativeHelpersCompile(t *testing.T) { runNativeTestCases(t, cs.Crypto.ContractMD, "crypto", []nativeTestCase{ {"sha256", []string{"[]byte{1, 2, 3}"}}, {"ripemd160", []string{"[]byte{1, 2, 3}"}}, + {"murmur32", []string{"[]byte{1, 2, 3}", "123"}}, {"verifyWithECDsa", []string{"[]byte{1, 2, 3}", pub, sig, "crypto.Secp256k1"}}, }) runNativeTestCases(t, cs.Std.ContractMD, "std", []nativeTestCase{