aboutsummaryrefslogtreecommitdiffstats
path: root/ethrpc
diff options
context:
space:
mode:
Diffstat (limited to 'ethrpc')
-rw-r--r--ethrpc/packages.go1
1 files changed, 1 insertions, 0 deletions
diff --git a/ethrpc/packages.go b/ethrpc/packages.go
index 34d7a3d6f..3f57f6982 100644
--- a/ethrpc/packages.go
+++ b/ethrpc/packages.go
@@ -184,6 +184,7 @@ func (p *EthereumApi) GetStorageAt(args *GetStorageArgs, reply *string) error {
i, _ := new(big.Int).SetString(args.Key, 10)
hx = ethutil.Hex(i.Bytes())
}
+ ethutil.Config.Log.Debugf("[JSON] GetStorageAt(%s, %s)\n", args.Address, hx)
value := state.GetStorage(hx)
*reply = NewSuccessRes(GetStorageAtRes{Address: args.Address, Key: args.Key, Value: value})
return nil