eth: fix typo (#15252)

This commit is contained in:
Lio李欧 2017-10-06 18:55:18 +08:00 committed by Felix Lange
parent 605c2b261f
commit 5df0b240ae
1 changed files with 1 additions and 1 deletions

View File

@ -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)
}