From 589d27386a4d630f052bf645a9e134a8b2d6fcad Mon Sep 17 00:00:00 2001
From: Maran <maran.hidskes@gmail.com>
Date: Wed, 25 Jun 2014 14:05:55 +0200
Subject: Fix key generation in ethPub

---
 ethrpc/packages.go | 1 +
 1 file changed, 1 insertion(+)

(limited to 'ethrpc')

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
-- 
cgit v1.2.3