aboutsummaryrefslogtreecommitdiffstats
path: root/signer/core/types.go
diff options
context:
space:
mode:
Diffstat (limited to 'signer/core/types.go')
-rw-r--r--signer/core/types.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/signer/core/types.go b/signer/core/types.go
index 8386bd44e..2acc0a4f4 100644
--- a/signer/core/types.go
+++ b/signer/core/types.go
@@ -73,8 +73,8 @@ type SendTxArgs struct {
Input *hexutil.Bytes `json:"input"`
}
-func (t SendTxArgs) String() string {
- s, err := json.Marshal(t)
+func (args SendTxArgs) String() string {
+ s, err := json.Marshal(args)
if err == nil {
return string(s)
}