diff options
Diffstat (limited to 'rpc/api.go')
-rw-r--r-- | rpc/api.go | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/rpc/api.go b/rpc/api.go index f318ced76..548bace5c 100644 --- a/rpc/api.go +++ b/rpc/api.go @@ -43,7 +43,8 @@ func (self *EthereumApi) xethAtStateNum(num int64) *xeth.XEth { func (p *EthereumApi) GetRequestReply(req *RpcRequest, reply *interface{}) error { // Spec at https://github.com/ethereum/wiki/wiki/Generic-JSON-RPC - rpclogger.DebugDetailf("%s %s", req.Method, req.Params) + rpclogger.Debugf("%s %s", req.Method, req.Params) + switch req.Method { case "web3_sha3": args := new(Sha3Args) |