Reverted back to old messages

This commit is contained in:
obscuren 2014-02-02 01:40:03 +01:00
parent 2067175808
commit f56a595954
2 changed files with 2 additions and 12 deletions

View File

@ -136,7 +136,7 @@ func (i *Console) ParseInput(input string) bool {
fmt.Println("getaddr: address unknown")
}
case "say":
i.ethereum.Broadcast(ethwire.MsgTalkTy, tokens[1])
i.ethereum.Broadcast(ethwire.MsgTalkTy, []interface{}{tokens[1]})
case "addp":
i.ethereum.ConnectToPeer(tokens[1])
case "pcount":

View File

@ -11,7 +11,6 @@ import (
"log"
"os"
"os/signal"
"path"
"runtime"
"time"
)
@ -65,18 +64,9 @@ func main() {
err := os.Mkdir(ethutil.Config.ExecPath, os.ModePerm)
// Error is OK if the error is ErrExist
if err != nil && !os.IsExist(err) {
log.Panic("Unable to create EXECPATH. Exiting")
log.Panic("Unable to create EXECPATH:", err)
}
// TODO The logger will eventually be a non blocking logger. Logging is a expensive task
// Log to file only
file, err := os.OpenFile(path.Join(ethutil.Config.ExecPath, "debug.log"), os.O_RDWR|os.O_CREATE, os.ModePerm)
if err != nil {
log.Panic("Unable to set proper logger", err)
}
ethutil.Config.Log = log.New(file, "", 0)
console := NewConsole(ethereum)
go console.Start()
}