diff options
author | Yusup <awklsgrep@gmail.com> | 2018-04-04 18:25:02 +0800 |
---|---|---|
committer | Felix Lange <fjl@users.noreply.github.com> | 2018-04-04 18:25:02 +0800 |
commit | 7aad81f8815084c8ed032705fbaf6d3710e518cf (patch) | |
tree | a79cccc5f2040ac2ec496ca18e7381390c30fbc7 /eth/backend.go | |
parent | 2a4bd55b43df92fe2f83468656ca03199596bceb (diff) | |
download | go-tangerine-7aad81f8815084c8ed032705fbaf6d3710e518cf.tar go-tangerine-7aad81f8815084c8ed032705fbaf6d3710e518cf.tar.gz go-tangerine-7aad81f8815084c8ed032705fbaf6d3710e518cf.tar.bz2 go-tangerine-7aad81f8815084c8ed032705fbaf6d3710e518cf.tar.lz go-tangerine-7aad81f8815084c8ed032705fbaf6d3710e518cf.tar.xz go-tangerine-7aad81f8815084c8ed032705fbaf6d3710e518cf.tar.zst go-tangerine-7aad81f8815084c8ed032705fbaf6d3710e518cf.zip |
eth: fix typos (#16414)
Diffstat (limited to 'eth/backend.go')
-rw-r--r-- | eth/backend.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/eth/backend.go b/eth/backend.go index 94aad2310..ffd5d8542 100644 --- a/eth/backend.go +++ b/eth/backend.go @@ -63,7 +63,7 @@ type Ethereum struct { chainConfig *params.ChainConfig // Channel for shutting down the service - shutdownChan chan bool // Channel for shutting down the ethereum + shutdownChan chan bool // Channel for shutting down the Ethereum stopDbUpgrade func() error // stop chain db sequential key upgrade // Handlers @@ -351,7 +351,7 @@ func (s *Ethereum) StartMining(local bool) error { if local { // If local (CPU) mining is started, we can disable the transaction rejection // mechanism introduced to speed sync times. CPU mining on mainnet is ludicrous - // so noone will ever hit this path, whereas marking sync done on CPU mining + // so none will ever hit this path, whereas marking sync done on CPU mining // will ensure that private networks work in single miner mode too. atomic.StoreUint32(&s.protocolManager.acceptTxs, 1) } |