diff options
author | Jeffrey Wilcke <jeffrey@ethereum.org> | 2015-07-03 23:26:57 +0800 |
---|---|---|
committer | Jeffrey Wilcke <jeffrey@ethereum.org> | 2015-07-03 23:26:57 +0800 |
commit | 4dfcd6012b17032ca3bb06afb76b9b283578b82a (patch) | |
tree | 9324e07fd8a8a978182be5af466e432d6d19631d /rpc/jeth.go | |
parent | 546c0f631c77be253d1293b82cf3843d752a2ae2 (diff) | |
parent | e8c1399bbf08234389f0e8f5da08f146856dab12 (diff) | |
download | dexon-4dfcd6012b17032ca3bb06afb76b9b283578b82a.tar dexon-4dfcd6012b17032ca3bb06afb76b9b283578b82a.tar.gz dexon-4dfcd6012b17032ca3bb06afb76b9b283578b82a.tar.bz2 dexon-4dfcd6012b17032ca3bb06afb76b9b283578b82a.tar.lz dexon-4dfcd6012b17032ca3bb06afb76b9b283578b82a.tar.xz dexon-4dfcd6012b17032ca3bb06afb76b9b283578b82a.tar.zst dexon-4dfcd6012b17032ca3bb06afb76b9b283578b82a.zip |
Merge pull request #1392 from bas-vk/ipcpipelining
Several bugfixes to IPC channel
Diffstat (limited to 'rpc/jeth.go')
-rw-r--r-- | rpc/jeth.go | 18 |
1 files changed, 10 insertions, 8 deletions
diff --git a/rpc/jeth.go b/rpc/jeth.go index 33fcd6efd..78e44c4da 100644 --- a/rpc/jeth.go +++ b/rpc/jeth.go @@ -3,6 +3,8 @@ package rpc import ( "encoding/json" + "fmt" + "github.com/ethereum/go-ethereum/jsre" "github.com/ethereum/go-ethereum/rpc/comms" "github.com/ethereum/go-ethereum/rpc/shared" @@ -20,14 +22,13 @@ func NewJeth(ethApi shared.EthereumApi, re *jsre.JSRE, client comms.EthereumClie } func (self *Jeth) err(call otto.FunctionCall, code int, msg string, id interface{}) (response otto.Value) { - rpcerr := &shared.ErrorObject{code, msg} - call.Otto.Set("ret_jsonrpc", shared.JsonRpcVersion) - call.Otto.Set("ret_id", id) - call.Otto.Set("ret_error", rpcerr) - response, _ = call.Otto.Run(` - ret_response = { jsonrpc: ret_jsonrpc, id: ret_id, error: ret_error }; - `) - return + errObj := fmt.Sprintf("{\"message\": \"%s\", \"code\": %d}", msg, code) + retResponse := fmt.Sprintf("ret_response = JSON.parse('{\"jsonrpc\": \"%s\", \"id\": %v, \"error\": %s}');", shared.JsonRpcVersion, id, errObj) + + call.Otto.Run("ret_error = " + errObj) + res, _ := call.Otto.Run(retResponse) + + return res } func (self *Jeth) Send(call otto.FunctionCall) (response otto.Value) { @@ -56,6 +57,7 @@ func (self *Jeth) Send(call otto.FunctionCall) (response otto.Value) { return self.err(call, -32603, err.Error(), req.Id) } respif, err = self.client.Recv() + if err != nil { return self.err(call, -32603, err.Error(), req.Id) } |