Remove unnecessary test socket.io handler

This commit is contained in:
Martin Boehm 2018-02-07 00:01:00 +01:00
parent c6cba802cd
commit a093d9aa9b

View File

@ -62,11 +62,6 @@ func NewSocketIoServer(binding string, db *db.RocksDB, mempool *bchain.Mempool)
server.On("message", s.onMessage)
server.On("send", func(c *gosocketio.Channel, msg Message) string {
glog.Info(c.Id(), "; ", msg)
return "OK"
})
return s, nil
}