aboutsummaryrefslogtreecommitdiffstats
path: root/rpc/api.go
diff options
context:
space:
mode:
authorTaylor Gerring <taylor.gerring@gmail.com>2015-03-11 08:10:02 +0800
committerTaylor Gerring <taylor.gerring@gmail.com>2015-03-11 08:10:02 +0800
commit499f816e3034c3e781f8ad35da070c9989cf6e3c (patch)
tree48deb90b7f363a7744aa4f076b2960b8f836c0ef /rpc/api.go
parentfda4d02f946dcef8b6896c8798c318876de0138d (diff)
downloadgo-tangerine-499f816e3034c3e781f8ad35da070c9989cf6e3c.tar.gz
go-tangerine-499f816e3034c3e781f8ad35da070c9989cf6e3c.tar.zst
go-tangerine-499f816e3034c3e781f8ad35da070c9989cf6e3c.zip
Output hex should be prepended with 0x
Diffstat (limited to 'rpc/api.go')
-rw-r--r--rpc/api.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/rpc/api.go b/rpc/api.go
index 511b819c1..a8c365b22 100644
--- a/rpc/api.go
+++ b/rpc/api.go
@@ -455,7 +455,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)