eth: fix typo (#15252)

This commit is contained in:
Lio李欧 2017-10-06 18:55:18 +08:00 committed by Vincent Serpoul
parent ca6398cd92
commit 73f1db4e53

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