tsetAmount: convert to int - electrum - Electrum Bitcoin wallet HTML git clone https://git.parazyd.org/electrum DIR Log DIR Files DIR Refs DIR Submodules --- DIR commit efa35d9ec2bdba15343a86d80cddd5abaff16daf DIR parent d9d76436dbe2379eacab39463c64465402e6e88a HTML Author: ThomasV <thomasv@gitorious> Date: Wed, 11 Jun 2014 15:36:40 +0200 setAmount: convert to int Diffstat: M plugins/exchange_rate.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- DIR diff --git a/plugins/exchange_rate.py b/plugins/exchange_rate.py t@@ -643,6 +643,6 @@ class Plugin(BasePlugin): exchange_rate = self.exchanger.exchange(Decimal("1.0"), self.fiat_unit()) if exchange_rate is not None: btc_amount = Decimal(fiat_amount) / exchange_rate - self.gui.main_window.amount_e.setAmount(btc_amount*Decimal(100000000)) + self.gui.main_window.amount_e.setAmount(int(btc_amount*Decimal(100000000))) self.fiat_e.textChanged.connect(fiat_changed) grid.addWidget(self.fiat_e, 4, 3, Qt.AlignHCenter)