71b87155ef
Signed-off-by: Evgenii Stratonikov <evgeniy@nspcc.ru>
45 lines
1.1 KiB
Go
45 lines
1.1 KiB
Go
package balance
|
|
|
|
import (
|
|
"fmt"
|
|
|
|
"github.com/nspcc-dev/neofs-node/pkg/morph/client"
|
|
)
|
|
|
|
// DecimalsArgs groups the arguments
|
|
// of decimals test invoke call.
|
|
type DecimalsArgs struct {
|
|
}
|
|
|
|
// DecimalsValues groups the stack parameters
|
|
// returned by decimals test invoke.
|
|
type DecimalsValues struct {
|
|
decimals int64 // decimals value
|
|
}
|
|
|
|
// Decimals returns the decimals value.
|
|
func (d *DecimalsValues) Decimals() int64 {
|
|
return d.decimals
|
|
}
|
|
|
|
// Decimals performs the test invoke of decimals
|
|
// method of NeoFS Balance contract.
|
|
func (c *Client) Decimals(args DecimalsArgs) (*DecimalsValues, error) {
|
|
prms, err := c.client.TestInvoke(
|
|
c.decimalsMethod,
|
|
)
|
|
if err != nil {
|
|
return nil, fmt.Errorf("could not perform test invocation (%s): %w", c.decimalsMethod, err)
|
|
} else if ln := len(prms); ln != 1 {
|
|
return nil, fmt.Errorf("unexpected stack item count (%s): %d", c.decimalsMethod, ln)
|
|
}
|
|
|
|
decimals, err := client.IntFromStackItem(prms[0])
|
|
if err != nil {
|
|
return nil, fmt.Errorf("could not get integer stack item from stack item (%s): %w", c.decimalsMethod, err)
|
|
}
|
|
|
|
return &DecimalsValues{
|
|
decimals: decimals,
|
|
}, nil
|
|
}
|