forked from TrueCloudLab/frostfs-node
a87fdab324
Signed-off-by: Leonard Lyubich <leonard@nspcc.ru>
11 lines
335 B
Go
11 lines
335 B
Go
package wrapper
|
|
|
|
// OwnerID represents the container owner identifier.
|
|
// FIXME: correct the definition.
|
|
type OwnerID struct{}
|
|
|
|
// 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")
|
|
}
|