diff options
author | Guillaume Ballet <gballet@gmail.com> | 2018-01-29 21:35:05 +0800 |
---|---|---|
committer | Péter Szilágyi <peterke@gmail.com> | 2018-01-29 21:35:05 +0800 |
commit | dd7a715d73a09f8358ba8e6866f5ae1c3135d0fe (patch) | |
tree | 9663ac39cfac7771ad09212573c980566e507b07 /internal | |
parent | 722bac84fa503199b9c485c1a3e2bfba03bc487d (diff) | |
download | dexon-dd7a715d73a09f8358ba8e6866f5ae1c3135d0fe.tar.gz dexon-dd7a715d73a09f8358ba8e6866f5ae1c3135d0fe.tar.zst dexon-dd7a715d73a09f8358ba8e6866f5ae1c3135d0fe.zip |
internal: fix a typo that caused a lint error on travis (#15987)
Diffstat (limited to 'internal')
-rw-r--r-- | internal/ethapi/api.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/internal/ethapi/api.go b/internal/ethapi/api.go index 48eb91b67..a4cba7a4d 100644 --- a/internal/ethapi/api.go +++ b/internal/ethapi/api.go @@ -333,7 +333,7 @@ func (s *PrivateAccountAPI) LockAccount(addr common.Address) bool { return fetchKeystore(s.am).Lock(addr) == nil } -// signTransactions sets defaults and signs the given transation +// signTransactions sets defaults and signs the given transaction // NOTE: the caller needs to ensure that the nonceLock is held, if applicable, // and release it after the transaction has been submitted to the tx pool func (s *PrivateAccountAPI) signTransaction(ctx context.Context, args SendTxArgs, passwd string) (*types.Transaction, error) { |