From 7a4fbb2ab73ec268ed801e5b5ab755ac572281d9 Mon Sep 17 00:00:00 2001 From: Guillaume Ballet Date: Mon, 29 Jan 2018 14:14:51 +0100 Subject: [PATCH] internal: fix a typo that caused a lint error on travis --- internal/ethapi/api.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/ethapi/api.go b/internal/ethapi/api.go index 48eb91b675..a4cba7a4db 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) {