forked from cerc-io/plugeth
Reverted back to old messages
This commit is contained in:
parent
2067175808
commit
f56a595954
@ -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":
|
||||
|
12
ethereum.go
12
ethereum.go
@ -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()
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user