electrum

Electrum Bitcoin wallet
git clone https://git.parazyd.org/electrum
Log | Files | Refs | Submodules

commit 254a5d8790becb240de4db00561dc2bb5c15f759
parent 674096f870564da1be2eb1a6ab6c2a6d66e1669d
Author: thomasv <thomasv@gitorious>
Date:   Mon,  5 Nov 2012 10:47:27 +0100

hum, it should be a decimal division

Diffstat:
Mlib/gui_lite.py | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lib/gui_lite.py b/lib/gui_lite.py @@ -442,7 +442,7 @@ class MiniWindow(QDialog): tx_hash = tx['tx_hash'] address = self.actuator.wallet.get_default_label(tx_hash) value = self.actuator.wallet.get_tx_value(tx_hash) - amount = D(value / 10.**8) + amount = D(value) / 10**8 self.history_list.append(address, amount) def acceptbit(self):