diff options
author | obscuren <geffobscura@gmail.com> | 2015-03-26 19:15:12 +0800 |
---|---|---|
committer | obscuren <geffobscura@gmail.com> | 2015-03-26 19:15:12 +0800 |
commit | 4ba850639ede569bda4413b8e986b26726950d08 (patch) | |
tree | da8627f47477eb33d81ecc54d6a2b458dbb418cb /rpc | |
parent | ace5b5a1bf881ab1219f8252144faf1836e0a994 (diff) | |
download | dexon-4ba850639ede569bda4413b8e986b26726950d08.tar.gz dexon-4ba850639ede569bda4413b8e986b26726950d08.tar.zst dexon-4ba850639ede569bda4413b8e986b26726950d08.zip |
updated web3.js light for console
Diffstat (limited to 'rpc')
-rw-r--r-- | rpc/api.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/rpc/api.go b/rpc/api.go index aa5b54199..230d9ff9c 100644 --- a/rpc/api.go +++ b/rpc/api.go @@ -50,7 +50,7 @@ func (api *EthereumApi) Close() { func (api *EthereumApi) GetRequestReply(req *RpcRequest, reply *interface{}) error { // Spec at https://github.com/ethereum/wiki/wiki/JSON-RPC - rpclogger.Debugf("%s %s", req.Method, req.Params) + rpclogger.Infof("%s %s", req.Method, req.Params) switch req.Method { case "web3_sha3": |