Skip to content

Commit

Permalink
Removed harcoded addresses from GetBlock JS bindings. Fixes #39
Browse files Browse the repository at this point in the history
  • Loading branch information
Maran committed May 13, 2014
1 parent edc281a commit b71094b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ethereal/assets/qml/webapp.qml
Original file line number Diff line number Diff line change
Expand Up @@ -70,12 +70,12 @@ ApplicationWindow {

break
case "getBlockByNumber":
var block = eth.getBlock("b9b56cf6f907fbee21db0cd7cbc0e6fea2fe29503a3943e275c5e467d649cb06")
var block = eth.getBlock(data.args[0])
postData(data._seed, block)

break
case "getBlockByHash":
var block = eth.getBlock("b9b56cf6f907fbee21db0cd7cbc0e6fea2fe29503a3943e275c5e467d649cb06")
var block = eth.getBlock((data.args[0])
postData(data._seed, block)

break
Expand Down

0 comments on commit b71094b

Please sign in to comment.