aboutsummaryrefslogtreecommitdiffstats
path: root/rpc
diff options
context:
space:
mode:
authorTaylor Gerring <taylor.gerring@gmail.com>2015-03-20 13:45:44 +0800
committerTaylor Gerring <taylor.gerring@gmail.com>2015-03-20 13:45:44 +0800
commiteb452115018e7686dc94ce1e92d2e9f85d76ab09 (patch)
treebfd809ec89295d1b60c2eabf0d8841406a5c4bcd /rpc
parentc3a3d387352cf9cf626dc67e0aeaaa68c4bc651a (diff)
parentb4a51de6020ce0fdee47eb6c7d63a13647b7e3c4 (diff)
downloadgo-tangerine-eb452115018e7686dc94ce1e92d2e9f85d76ab09.tar
go-tangerine-eb452115018e7686dc94ce1e92d2e9f85d76ab09.tar.gz
go-tangerine-eb452115018e7686dc94ce1e92d2e9f85d76ab09.tar.bz2
go-tangerine-eb452115018e7686dc94ce1e92d2e9f85d76ab09.tar.lz
go-tangerine-eb452115018e7686dc94ce1e92d2e9f85d76ab09.tar.xz
go-tangerine-eb452115018e7686dc94ce1e92d2e9f85d76ab09.tar.zst
go-tangerine-eb452115018e7686dc94ce1e92d2e9f85d76ab09.zip
Merge branch 'rpcfrontier' of github.com:ethereum/go-ethereum into rpcfrontier
Diffstat (limited to 'rpc')
-rw-r--r--rpc/api.go2
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)