Fixed bug where logging could crash client during tx adding

This commit is contained in:
obscuren
2015-01-02 22:19:58 +01:00
parent 5c82fdc243
commit 16f417f5af
5 changed files with 24 additions and 24 deletions

View File

@ -86,6 +86,7 @@ func (self *JSRepl) Stop() {
}
func (self *JSRepl) parseInput(code string) {
value, err := self.re.Run(code)
if err != nil {
fmt.Println(err)