[#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

@ -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 {