diff --git a/mobile/bind.go b/mobile/bind.go index 9b4c0bb0e5..f64b37ec15 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 {