mirror of
https://github.com/LBRYFoundation/LBRY-Vault.git
synced 2025-08-31 17:31:36 +00:00
float division
This commit is contained in:
parent
80e97feb47
commit
674096f870
1 changed files with 1 additions and 1 deletions
|
@ -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):
|
||||
|
|
Loading…
Add table
Reference in a new issue