frostfs-node/pkg/morph/client/balance/wrapper/decimals.go

23 lines
519 B
Go
Raw Normal View History

2020-07-24 13:54:03 +00:00
package wrapper
import (
"fmt"
2020-07-24 13:54:03 +00:00
"github.com/nspcc-dev/neofs-node/pkg/morph/client/balance"
)
// Decimals decimal precision of currency transactions
// through the Balance contract call, and returns it.
func (w *Wrapper) Decimals() (uint32, error) {
// prepare invocation arguments
args := balance.DecimalsArgs{}
// invoke smart contract call
values, err := w.client.Decimals(args)
if err != nil {
return 0, fmt.Errorf("could not invoke smart contract: %w", err)
2020-07-24 13:54:03 +00:00
}
return uint32(values.Decimals()), nil
}