diff options
author | Péter Szilágyi <peterke@gmail.com> | 2017-10-12 18:46:29 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-10-12 18:46:29 +0800 |
commit | fd0e7b1c679ff4535513ae2d01c81803b7eb8f9b (patch) | |
tree | 96d28918e59ed179e365e23137631265788bd1bd | |
parent | ad444752311b1a318a7933562749b4586d4469e9 (diff) | |
parent | e9382c6e9ffa03df2e59e441a55eb7aad15e3016 (diff) | |
download | dexon-fd0e7b1c679ff4535513ae2d01c81803b7eb8f9b.tar dexon-fd0e7b1c679ff4535513ae2d01c81803b7eb8f9b.tar.gz dexon-fd0e7b1c679ff4535513ae2d01c81803b7eb8f9b.tar.bz2 dexon-fd0e7b1c679ff4535513ae2d01c81803b7eb8f9b.tar.lz dexon-fd0e7b1c679ff4535513ae2d01c81803b7eb8f9b.tar.xz dexon-fd0e7b1c679ff4535513ae2d01c81803b7eb8f9b.tar.zst dexon-fd0e7b1c679ff4535513ae2d01c81803b7eb8f9b.zip |
Merge pull request #15280 from terasum/master
miner: fix typo
-rw-r--r-- | miner/remote_agent.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/miner/remote_agent.go b/miner/remote_agent.go index aac7ce865..287e7530c 100644 --- a/miner/remote_agent.go +++ b/miner/remote_agent.go @@ -163,7 +163,7 @@ func (a *RemoteAgent) SubmitWork(nonce types.BlockNonce, mixDigest, hash common. } // loop monitors mining events on the work and quit channels, updating the internal -// state of the rmeote miner until a termination is requested. +// state of the remote miner until a termination is requested. // // Note, the reason the work and quit channels are passed as parameters is because // RemoteAgent.Start() constantly recreates these channels, so the loop code cannot |