[#815] pkg/morph/netmap: Add Morph() method

Signed-off-by: Pavel Karpy <carpawell@nspcc.ru>
This commit is contained in:
Pavel Karpy 2021-09-08 17:52:40 +03:00 committed by Alex Vanin
parent 00caed8d3d
commit 74afcbe409
2 changed files with 10 additions and 0 deletions

View file

@ -112,6 +112,11 @@ func New(c *client.StaticClient, opts ...Option) (*Client, error) {
return res, nil
}
// Morph returns raw morph client.
func (c Client) Morph() *client.Client {
return c.client.Morph()
}
// WithAddPeerMethod returns a client constructor option that
// specifies the method name of adding peer operation.
//

View file

@ -53,6 +53,11 @@ func NewFromMorph(cli *client.Client, contract util.Uint160, fee fixedn.Fixed8,
return &Wrapper{client: enhancedNetmapClient}, nil
}
// Morph returns raw morph client.
func (w Wrapper) Morph() *client.Client {
return w.client.Morph()
}
// TryNotary returns option to enable
// notary invocation tries.
func TryNotary() Option {