mirror of https://github.com/status-im/op-geth.git
eth: fix typo (#15252)
This commit is contained in:
parent
605c2b261f
commit
5df0b240ae
|
@ -327,7 +327,7 @@ func (s *Ethereum) StartMining(local bool) error {
|
||||||
wallet, err := s.accountManager.Find(accounts.Account{Address: eb})
|
wallet, err := s.accountManager.Find(accounts.Account{Address: eb})
|
||||||
if wallet == nil || err != nil {
|
if wallet == nil || err != nil {
|
||||||
log.Error("Etherbase account unavailable locally", "err", err)
|
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)
|
clique.Authorize(eb, wallet.SignHash)
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue