aboutsummaryrefslogtreecommitdiffstats
path: root/mobile
diff options
context:
space:
mode:
Diffstat (limited to 'mobile')
-rw-r--r--mobile/bind.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/mobile/bind.go b/mobile/bind.go
index 084d6ef4c..7b79bedaf 100644
--- a/mobile/bind.go
+++ b/mobile/bind.go
@@ -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
}