mirror of
https://github.com/LBRYFoundation/LBRY-Vault.git
synced 2025-08-30 17:01:34 +00:00
fee may be zero (tx details)
This commit is contained in:
parent
3d745637a2
commit
1adbef4b25
1 changed files with 1 additions and 1 deletions
|
@ -512,7 +512,7 @@ class ElectrumWindow(QMainWindow):
|
||||||
vbox.addWidget(QLabel("Date: %s"%time_str))
|
vbox.addWidget(QLabel("Date: %s"%time_str))
|
||||||
vbox.addWidget(QLabel("Status: %d confirmations"%conf))
|
vbox.addWidget(QLabel("Status: %d confirmations"%conf))
|
||||||
if is_mine:
|
if is_mine:
|
||||||
if fee:
|
if fee is not None:
|
||||||
vbox.addWidget(QLabel("Amount sent: %s"% format_satoshis(v-fee, False)))
|
vbox.addWidget(QLabel("Amount sent: %s"% format_satoshis(v-fee, False)))
|
||||||
vbox.addWidget(QLabel("Transaction fee: %s"% format_satoshis(fee, False)))
|
vbox.addWidget(QLabel("Transaction fee: %s"% format_satoshis(fee, False)))
|
||||||
else:
|
else:
|
||||||
|
|
Loading…
Add table
Reference in a new issue