From a99e0d7ba6cd72715455405f30070544e875e01a Mon Sep 17 00:00:00 2001 From: Evgenii Stratonikov Date: Tue, 14 Apr 2020 16:15:49 +0300 Subject: [PATCH] core: fix typo in TestECDSAVerify --- pkg/core/interop_neo_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/core/interop_neo_test.go b/pkg/core/interop_neo_test.go index 7253edb17..782c491b0 100644 --- a/pkg/core/interop_neo_test.go +++ b/pkg/core/interop_neo_test.go @@ -282,7 +282,7 @@ func TestECDSAVerify(t *testing.T) { t.Run("invalid signature", func(t *testing.T) { sign := priv.Sign(msg) - sign[0] ^= sign[0] + sign[0] = ^sign[0] runCase(t, false, false, sign, priv.PublicKey().Bytes(), msg) })