diff --git a/mobile/bind.go b/mobile/bind.go
index 084d6ef4c76e6efe3b6f9a8d3aa26e438aa9719d..7b79bedafd9c6c96cf427fd0a19f78be6a4475fe 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
 	}