aboutsummaryrefslogtreecommitdiffstats
path: root/internal
diff options
context:
space:
mode:
authorGuillaume Ballet <gballet@gmail.com>2018-01-29 21:35:05 +0800
committerPéter Szilágyi <peterke@gmail.com>2018-01-29 21:35:05 +0800
commitdd7a715d73a09f8358ba8e6866f5ae1c3135d0fe (patch)
tree9663ac39cfac7771ad09212573c980566e507b07 /internal
parent722bac84fa503199b9c485c1a3e2bfba03bc487d (diff)
downloaddexon-dd7a715d73a09f8358ba8e6866f5ae1c3135d0fe.tar
dexon-dd7a715d73a09f8358ba8e6866f5ae1c3135d0fe.tar.gz
dexon-dd7a715d73a09f8358ba8e6866f5ae1c3135d0fe.tar.bz2
dexon-dd7a715d73a09f8358ba8e6866f5ae1c3135d0fe.tar.lz
dexon-dd7a715d73a09f8358ba8e6866f5ae1c3135d0fe.tar.xz
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.go2
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) {