diff options
author | Taylor Gerring <taylor.gerring@gmail.com> | 2015-03-11 08:10:02 +0800 |
---|---|---|
committer | Taylor Gerring <taylor.gerring@gmail.com> | 2015-03-11 08:10:02 +0800 |
commit | 499f816e3034c3e781f8ad35da070c9989cf6e3c (patch) | |
tree | 48deb90b7f363a7744aa4f076b2960b8f836c0ef /rpc/api.go | |
parent | fda4d02f946dcef8b6896c8798c318876de0138d (diff) | |
download | dexon-499f816e3034c3e781f8ad35da070c9989cf6e3c.tar.gz dexon-499f816e3034c3e781f8ad35da070c9989cf6e3c.tar.zst dexon-499f816e3034c3e781f8ad35da070c9989cf6e3c.zip |
Output hex should be prepended with 0x
Diffstat (limited to 'rpc/api.go')
-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 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) |