2020-07-24 16:54:03 +03:00
|
|
|
package wrapper
|
|
|
|
|
|
|
|
// OwnerID represents the container owner identifier.
|
2020-08-21 14:32:03 +03:00
|
|
|
// FIXME: correct the definition.
|
|
|
|
type OwnerID struct{}
|
2020-07-24 16:54:03 +03: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) {
|
2020-08-21 14:32:03 +03:00
|
|
|
panic("implement me")
|
2020-07-24 16:54:03 +03:00
|
|
|
}
|