diff options
author | obscuren <geffobscura@gmail.com> | 2014-10-01 05:26:52 +0800 |
---|---|---|
committer | obscuren <geffobscura@gmail.com> | 2014-10-01 05:26:52 +0800 |
commit | 3af211dd65d6690afce9976a9f47ab1cdddb8d58 (patch) | |
tree | 2fbfade2d934d5c41a0e3bec449d1b23dea3b0ae /peer.go | |
parent | ab6ede51d7fedb9270cab08ee732a834be34dab2 (diff) | |
download | go-tangerine-3af211dd65d6690afce9976a9f47ab1cdddb8d58.tar.gz go-tangerine-3af211dd65d6690afce9976a9f47ab1cdddb8d58.tar.zst go-tangerine-3af211dd65d6690afce9976a9f47ab1cdddb8d58.zip |
Implemented WebSocket package
Diffstat (limited to 'peer.go')
-rw-r--r-- | peer.go | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -320,7 +320,7 @@ out: case msg := <-p.outputQueue: if !p.statusKnown { switch msg.Type { - case ethwire.MsgStatusTy, ethwire.MsgGetTxsTy, ethwire.MsgTxTy, ethwire.MsgGetBlockHashesTy, ethwire.MsgBlockHashesTy, ethwire.MsgGetBlocksTy, ethwire.MsgBlockTy: + case ethwire.MsgGetTxsTy, ethwire.MsgTxTy, ethwire.MsgGetBlockHashesTy, ethwire.MsgBlockHashesTy, ethwire.MsgGetBlocksTy, ethwire.MsgBlockTy: break skip } } |