diff options
author | obscuren <geffobscura@gmail.com> | 2014-10-08 18:29:49 +0800 |
---|---|---|
committer | obscuren <geffobscura@gmail.com> | 2014-10-08 18:29:49 +0800 |
commit | 4de3ad1712ce0fdc62b1acc27a3922b192e943c6 (patch) | |
tree | a7de24c746a0c6d3531f1fab925d4e8b48a76cd2 /ethpipe | |
parent | 9d86a49a7327199c01977f3372c8adf748252c32 (diff) | |
download | dexon-4de3ad1712ce0fdc62b1acc27a3922b192e943c6.tar.gz dexon-4de3ad1712ce0fdc62b1acc27a3922b192e943c6.tar.zst dexon-4de3ad1712ce0fdc62b1acc27a3922b192e943c6.zip |
New block message
Diffstat (limited to 'ethpipe')
-rw-r--r-- | ethpipe/js_pipe.go | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/ethpipe/js_pipe.go b/ethpipe/js_pipe.go index 17c2261c7..24a553dad 100644 --- a/ethpipe/js_pipe.go +++ b/ethpipe/js_pipe.go @@ -3,7 +3,6 @@ package ethpipe import ( "bytes" "encoding/json" - "fmt" "sync/atomic" "github.com/ethereum/eth-go/ethchain" @@ -93,7 +92,6 @@ func (self *JSPipe) NumberToHuman(balance string) string { } func (self *JSPipe) StorageAt(addr, storageAddr string) string { - fmt.Println("get", addr, storageAddr) storage := self.World().SafeGet(ethutil.Hex2Bytes(addr)).Storage(ethutil.Hex2Bytes(storageAddr)) return ethutil.Bytes2Hex(storage.Bytes()) |