aboutsummaryrefslogtreecommitdiffstats
path: root/mobile
diff options
context:
space:
mode:
authorligi <ligi@ligi.de>2017-10-06 02:08:14 +0800
committerPéter Szilágyi <peterke@gmail.com>2017-10-06 02:08:14 +0800
commit605c2b261f89c8398f2003a24e18a121d042cead (patch)
tree9de1da9b23c46d9db0ccabe3ef16dc947c1348bb /mobile
parent4bc60e3aa8eb3929a4e040ef260807a36e3db1d8 (diff)
downloadgo-tangerine-605c2b261f89c8398f2003a24e18a121d042cead.tar
go-tangerine-605c2b261f89c8398f2003a24e18a121d042cead.tar.gz
go-tangerine-605c2b261f89c8398f2003a24e18a121d042cead.tar.bz2
go-tangerine-605c2b261f89c8398f2003a24e18a121d042cead.tar.lz
go-tangerine-605c2b261f89c8398f2003a24e18a121d042cead.tar.xz
go-tangerine-605c2b261f89c8398f2003a24e18a121d042cead.tar.zst
go-tangerine-605c2b261f89c8398f2003a24e18a121d042cead.zip
mobile: fix variadic argument expansion
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
}