aboutsummaryrefslogtreecommitdiffstats
path: root/eth
diff options
context:
space:
mode:
authorLio李欧 <lionello@users.noreply.github.com>2017-10-06 18:55:18 +0800
committerFelix Lange <fjl@users.noreply.github.com>2017-10-06 18:55:18 +0800
commit5df0b240ae35b5c525323fff355922df44616150 (patch)
treeff7500a464913a3613136c03ac66f644bf119d66 /eth
parent605c2b261f89c8398f2003a24e18a121d042cead (diff)
downloadgo-tangerine-5df0b240ae35b5c525323fff355922df44616150.tar
go-tangerine-5df0b240ae35b5c525323fff355922df44616150.tar.gz
go-tangerine-5df0b240ae35b5c525323fff355922df44616150.tar.bz2
go-tangerine-5df0b240ae35b5c525323fff355922df44616150.tar.lz
go-tangerine-5df0b240ae35b5c525323fff355922df44616150.tar.xz
go-tangerine-5df0b240ae35b5c525323fff355922df44616150.tar.zst
go-tangerine-5df0b240ae35b5c525323fff355922df44616150.zip
eth: fix typo (#15252)
Diffstat (limited to 'eth')
-rw-r--r--eth/backend.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/eth/backend.go b/eth/backend.go
index 99a1928fe..6a06bd829 100644
--- a/eth/backend.go
+++ b/eth/backend.go
@@ -327,7 +327,7 @@ func (s *Ethereum) StartMining(local bool) error {
wallet, err := s.accountManager.Find(accounts.Account{Address: eb})
if wallet == nil || err != nil {
log.Error("Etherbase account unavailable locally", "err", err)
- return fmt.Errorf("singer missing: %v", err)
+ return fmt.Errorf("signer missing: %v", err)
}
clique.Authorize(eb, wallet.SignHash)
}