Commit 97bf9f15 authored by obscuren's avatar obscuren

Temp fix for console output

parent 3d5f48a1
...@@ -46,9 +46,11 @@ func (self *Jeth) Send(call otto.FunctionCall) (response otto.Value) { ...@@ -46,9 +46,11 @@ func (self *Jeth) Send(call otto.FunctionCall) (response otto.Value) {
} }
self.re.Set("ret_jsonrpc", jsonrpcver) self.re.Set("ret_jsonrpc", jsonrpcver)
self.re.Set("ret_id", req.Id) self.re.Set("ret_id", req.Id)
self.re.Set("ret_result", respif)
res, _ := json.Marshal(respif)
self.re.Set("ret_result", string(res))
response, err = self.re.Run(` response, err = self.re.Run(`
ret_response = { jsonrpc: ret_jsonrpc, id: ret_id, result: ret_result }; ret_response = { jsonrpc: ret_jsonrpc, id: ret_id, result: JSON.parse(ret_result) };
`) `)
return return
} }
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment