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

12 lines
335 B
Go
Raw Normal View History

2020-07-24 13:54:03 +00:00
package wrapper
// OwnerID represents the container owner identifier.
// FIXME: correct the definition.
type OwnerID struct{}
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(ownerID OwnerID) (int64, error) {
panic("implement me")
2020-07-24 13:54:03 +00:00
}