diff --git a/pkg/morph/client/container/put.go b/pkg/morph/client/container/put.go index e693977f..4c6060ac 100644 --- a/pkg/morph/client/container/put.go +++ b/pkg/morph/client/container/put.go @@ -12,6 +12,10 @@ type PutArgs struct { sig []byte // binary container signature publicKey []byte // public key of container owner + + token []byte // binary session token + + bindKey bool // bind key to account or not } // SetPublicKey sets the public key of container owner @@ -40,6 +44,8 @@ func (c *Client) Put(args PutArgs) error { args.cnr, args.sig, args.publicKey, + args.token, + args.bindKey, ) if err != nil {