From 4986cf8a72240aeb4ce38dc9968b9c0cbec34e47 Mon Sep 17 00:00:00 2001 From: ligi Date: Tue, 3 Oct 2017 12:39:13 +0200 Subject: [PATCH] mobile: Fix Contract ABI Error - closes #14363 --- mobile/bind.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mobile/bind.go b/mobile/bind.go index 084d6ef4c7..7b79bedafd 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 }