diff options
author | Taylor Gerring <taylor.gerring@gmail.com> | 2015-03-20 13:45:44 +0800 |
---|---|---|
committer | Taylor Gerring <taylor.gerring@gmail.com> | 2015-03-20 13:45:44 +0800 |
commit | eb452115018e7686dc94ce1e92d2e9f85d76ab09 (patch) | |
tree | bfd809ec89295d1b60c2eabf0d8841406a5c4bcd /rpc | |
parent | c3a3d387352cf9cf626dc67e0aeaaa68c4bc651a (diff) | |
parent | b4a51de6020ce0fdee47eb6c7d63a13647b7e3c4 (diff) | |
download | dexon-eb452115018e7686dc94ce1e92d2e9f85d76ab09.tar.gz dexon-eb452115018e7686dc94ce1e92d2e9f85d76ab09.tar.zst dexon-eb452115018e7686dc94ce1e92d2e9f85d76ab09.zip |
Merge branch 'rpcfrontier' of github.com:ethereum/go-ethereum into rpcfrontier
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 4f86e703d..7b50a1707 100644 --- a/rpc/api.go +++ b/rpc/api.go @@ -486,7 +486,7 @@ func (p *EthereumApi) GetBlockUncleCountByNumber(blocknum int64) (int64, error) func (p *EthereumApi) GetRequestReply(req *RpcRequest, reply *interface{}) error { // Spec at https://github.com/ethereum/wiki/wiki/Generic-JSON-RPC - rpclogger.Infof("%s %s", req.Method, req.Params) + rpclogger.Debugf("%s %s", req.Method, req.Params) switch req.Method { case "web3_sha3": args := new(Sha3Args) |