Skip to content

Commit

Permalink
Change msc wallet console binary
Browse files Browse the repository at this point in the history
  • Loading branch information
Maran committed Dec 30, 2013
1 parent 4d221f4 commit 007b239
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
File renamed without changes.
1 change: 1 addition & 0 deletions lib/mastercoin-wallet.rb
@@ -1,3 +1,4 @@
require 'thread'
require 'Qt'
require 'httparty'
require 'qtuitools'
Expand Down
4 changes: 2 additions & 2 deletions lib/mastercoin-wallet/gui/main_window.rb
Expand Up @@ -142,8 +142,8 @@ def add_offer_row(item)
def add_purchase_row(item)
row = Qt::TreeWidgetItem.new
row.setText(0, item["selling_offer"]["address"])
row.setText(1, item["accepted_amount"])
row.setText(2, item["bitcoins_required"])
row.setText(1, item["accepted_amount"].to_s)
row.setText(2, item["bitcoins_required"].to_s)
row.setText(3, coin_name(item["currency_id"]))
row.setText(4, item["status_text"])
row.setText(5, get_date(item["tx_date"]))
Expand Down

0 comments on commit 007b239

Please sign in to comment.