aboutsummaryrefslogtreecommitdiffstats
path: root/peer.go
diff options
context:
space:
mode:
authorobscuren <geffobscura@gmail.com>2014-10-01 05:26:52 +0800
committerobscuren <geffobscura@gmail.com>2014-10-01 05:26:52 +0800
commit3af211dd65d6690afce9976a9f47ab1cdddb8d58 (patch)
tree2fbfade2d934d5c41a0e3bec449d1b23dea3b0ae /peer.go
parentab6ede51d7fedb9270cab08ee732a834be34dab2 (diff)
downloaddexon-3af211dd65d6690afce9976a9f47ab1cdddb8d58.tar
dexon-3af211dd65d6690afce9976a9f47ab1cdddb8d58.tar.gz
dexon-3af211dd65d6690afce9976a9f47ab1cdddb8d58.tar.bz2
dexon-3af211dd65d6690afce9976a9f47ab1cdddb8d58.tar.lz
dexon-3af211dd65d6690afce9976a9f47ab1cdddb8d58.tar.xz
dexon-3af211dd65d6690afce9976a9f47ab1cdddb8d58.tar.zst
dexon-3af211dd65d6690afce9976a9f47ab1cdddb8d58.zip
Implemented WebSocket package
Diffstat (limited to 'peer.go')
-rw-r--r--peer.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/peer.go b/peer.go
index f5d0fe4ed..318294509 100644
--- a/peer.go
+++ b/peer.go
@@ -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
}
}