mobile: fix variadic argument expansion

This commit is contained in:
ligi 2017-10-05 20:08:14 +02:00 committed by Péter Szilágyi
parent 4bc60e3aa8
commit 605c2b261f
1 changed files with 1 additions and 1 deletions

View File

@ -165,7 +165,7 @@ func (c *BoundContract) Call(opts *CallOpts, out *Interfaces, method string, arg
// Transact invokes the (paid) contract method with params as input values.
func (c *BoundContract) Transact(opts *TransactOpts, method string, args *Interfaces) (tx *Transaction, _ error) {
rawTx, err := c.contract.Transact(&opts.opts, method, args.objects)
rawTx, err := c.contract.Transact(&opts.opts, method, args.objects...)
if err != nil {
return nil, err
}