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

28 lines
571 B
Go
Raw Normal View History

2020-07-24 13:54:03 +00:00
package wrapper
import (
"math/big"
"github.com/nspcc-dev/neofs-api-go/pkg/owner"
"github.com/nspcc-dev/neofs-node/pkg/morph/client/balance"
)
2020-07-24 13:54:03 +00:00
// BalanceOf receives the amount of funds in the client's account
// through the Balance contract call, and returns it.
func (w *Wrapper) BalanceOf(id *owner.ID) (*big.Int, error) {
v, err := owner.ScriptHashBE(id)
if err != nil {
return nil, err
}
args := balance.GetBalanceOfArgs{}
args.SetWallet(v)
result, err := w.client.BalanceOf(args)
if err != nil {
return nil, err
}
return result.Amount(), nil
2020-07-24 13:54:03 +00:00
}