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