mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-08-18 18:02:24 +00:00
signer/*: fixed naming error crashing build
This commit is contained in:
parent
3d5cf5122a
commit
6a0e415ce0
1 changed files with 2 additions and 2 deletions
|
|
@ -74,9 +74,9 @@ type SendTxArgs struct {
|
||||||
}
|
}
|
||||||
|
|
||||||
func (args SendTxArgs) String() string {
|
func (args SendTxArgs) String() string {
|
||||||
s, err := json.Marshal(args)
|
args, err := json.Marshal(args)
|
||||||
if err == nil {
|
if err == nil {
|
||||||
return string(s)
|
return string(args)
|
||||||
}
|
}
|
||||||
return err.Error()
|
return err.Error()
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue