Fixed typo: s/singer/signer/

This commit is contained in:
Lionello Lunesu 2017-10-06 13:28:22 +08:00
parent 605c2b261f
commit dbeb223814

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