forked from TrueCloudLab/frostfs-node
[#496] innerring/invoke: move wrapper structs to separate packages
Signed-off-by: Evgenii Stratonikov <evgeniy@nspcc.ru>
This commit is contained in:
parent
ca0e3211be
commit
b52751e992
9 changed files with 104 additions and 116 deletions
|
@ -1,6 +1,9 @@
|
|||
package audit
|
||||
|
||||
import (
|
||||
"github.com/nspcc-dev/neo-go/pkg/encoding/fixedn"
|
||||
"github.com/nspcc-dev/neo-go/pkg/util"
|
||||
"github.com/nspcc-dev/neofs-node/pkg/morph/client"
|
||||
"github.com/nspcc-dev/neofs-node/pkg/morph/client/audit"
|
||||
)
|
||||
|
||||
|
@ -12,3 +15,13 @@ type ClientWrapper audit.Client
|
|||
func WrapClient(c *audit.Client) *ClientWrapper {
|
||||
return (*ClientWrapper)(c)
|
||||
}
|
||||
|
||||
// NewFromMorph returns the wrapper instance from the raw morph client.
|
||||
func NewFromMorph(cli *client.Client, contract util.Uint160, fee fixedn.Fixed8) (*ClientWrapper, error) {
|
||||
staticClient, err := client.NewStatic(cli, contract, fee)
|
||||
if err != nil {
|
||||
return nil, err
|
||||
}
|
||||
|
||||
return WrapClient(audit.New(staticClient)), nil
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue