mirror of
https://github.com/LBRYFoundation/LBRY-Vault.git
synced 2025-08-23 17:47:31 +00:00
fix: get_tx_value
This commit is contained in:
parent
4788ea62de
commit
13c9991be8
1 changed files with 2 additions and 1 deletions
|
@ -440,7 +440,8 @@ class MiniWindow(QDialog):
|
|||
def update_history(self, tx_history):
|
||||
for tx in tx_history[-10:]:
|
||||
address = tx["default_label"]
|
||||
amount = D(tx["value"]) / 10**8
|
||||
value = self.actuator.wallet.get_tx_value(tx['tx_hash'])
|
||||
amount = D(value / 10**8
|
||||
self.history_list.append(address, amount)
|
||||
|
||||
def acceptbit(self):
|
||||
|
|
Loading…
Add table
Reference in a new issue