diff --git a/mobile/bind.go b/mobile/bind.go
index 9b4c0bb0e5d6d8af954921a137ddeb3cffe8cb17..f64b37ec15809d424d2cfec213143ffaddeb554d 100644
--- a/mobile/bind.go
+++ b/mobile/bind.go
@@ -32,7 +32,7 @@ import (
 // Signer is an interface defining the callback when a contract requires a
 // method to sign the transaction before submission.
 type Signer interface {
-	Sign(*Address, *Transaction) (tx *Transaction, _ error)
+	Sign(addr *Address, unsignedTx *Transaction) (tx *Transaction, _ error)
 }
 
 type MobileSigner struct {