Commit b71094b0 authored by Maran's avatar Maran

Removed harcoded addresses from GetBlock JS bindings. Fixes #39

parent edc281ac
...@@ -70,12 +70,12 @@ ApplicationWindow { ...@@ -70,12 +70,12 @@ ApplicationWindow {
break break
case "getBlockByNumber": case "getBlockByNumber":
var block = eth.getBlock("b9b56cf6f907fbee21db0cd7cbc0e6fea2fe29503a3943e275c5e467d649cb06") var block = eth.getBlock(data.args[0])
postData(data._seed, block) postData(data._seed, block)
break break
case "getBlockByHash": case "getBlockByHash":
var block = eth.getBlock("b9b56cf6f907fbee21db0cd7cbc0e6fea2fe29503a3943e275c5e467d649cb06") var block = eth.getBlock((data.args[0])
postData(data._seed, block) postData(data._seed, block)
break break
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment