From eb26a61078b9ce2fdf3079528d49496e1f57e0a5 Mon Sep 17 00:00:00 2001 From: Evgeniy Stratonikov Date: Fri, 19 Feb 2021 11:53:12 +0300 Subject: [PATCH] smartcontract: remove `IsNEP17()` --- pkg/smartcontract/manifest/standard/nep17.go | 5 ----- 1 file changed, 5 deletions(-) diff --git a/pkg/smartcontract/manifest/standard/nep17.go b/pkg/smartcontract/manifest/standard/nep17.go index 685afba3d..0b1abfb18 100644 --- a/pkg/smartcontract/manifest/standard/nep17.go +++ b/pkg/smartcontract/manifest/standard/nep17.go @@ -42,8 +42,3 @@ var nep17 = &Standard{ }, }, } - -// IsNEP17 checks if m is NEP-17 compliant. -func IsNEP17(m *manifest.Manifest) error { - return Comply(m, nep17) -}