This commit is contained in:
obscuren 2014-12-24 11:31:45 +01:00
commit 804af9658a
3 changed files with 7 additions and 2 deletions

View File

@ -31,7 +31,7 @@ import (
const (
ClientIdentifier = "Ethereum(G)"
Version = "0.7.10"
Version = "0.7.11"
)
var clilogger = logger.NewLogger("CLI")

View File

@ -31,7 +31,7 @@ import (
const (
ClientIdentifier = "Mist"
Version = "0.7.10"
Version = "0.7.11"
)
var ethereum *eth.Ethereum

View File

@ -3,10 +3,13 @@ package utils
import (
"github.com/ethereum/go-ethereum/eth"
"github.com/ethereum/go-ethereum/ethutil"
"github.com/ethereum/go-ethereum/logger"
"github.com/ethereum/go-ethereum/websocket"
"github.com/ethereum/go-ethereum/xeth"
)
var wslogger = logger.NewLogger("WS")
func args(v ...interface{}) []interface{} {
return v
}
@ -106,6 +109,8 @@ func (self *WebSocketServer) Serv() {
}
func StartWebSockets(eth *eth.Ethereum) {
wslogger.Infoln("Starting WebSockets")
sock := NewWebSocketServer(eth)
go sock.Serv()
}