From 1c821d6c36d3d95232ceb942280c4ae9ab36e58e Mon Sep 17 00:00:00 2001 From: Evgenii Stratonikov Date: Mon, 31 Jan 2022 16:35:37 +0300 Subject: [PATCH] [#625] morph/client: remove unused interface Signed-off-by: Evgenii Stratonikov --- pkg/morph/client/internal/static.go | 11 ----------- 1 file changed, 11 deletions(-) delete mode 100644 pkg/morph/client/internal/static.go diff --git a/pkg/morph/client/internal/static.go b/pkg/morph/client/internal/static.go deleted file mode 100644 index 0bba1b320..000000000 --- a/pkg/morph/client/internal/static.go +++ /dev/null @@ -1,11 +0,0 @@ -package internal - -import ( - "github.com/nspcc-dev/neo-go/pkg/util" -) - -// StaticClient groups client.StaticClient type interface methods which are needed to be inherited -// by upper-level client instances. -type StaticClient interface { - ContractAddress() util.Uint160 -}