frostfs-node/pkg/morph/client/internal/static.go
Leonard Lyubich 1860f5040c [#627] morph: Define partial interface of StaticClient type
There is a need to inherit some methods of `StaticClient` type. In order to
not inherit all method via type embedding we can group sub-set of methods
and inherit it.

Signed-off-by: Leonard Lyubich <leonard@nspcc.ru>
2021-09-30 14:47:04 +03:00

11 lines
269 B
Go

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
}