fix amount_sat in kivy invoice/request dialogs. (follow-up d5f368c584)

This commit is contained in:
ThomasV 2020-06-25 14:39:14 +02:00
parent 10c2183461
commit 01202ed3eb
2 changed files with 7 additions and 5 deletions

View file

@ -17,7 +17,7 @@ if TYPE_CHECKING:
Builder.load_string('''
<InvoiceDialog@Popup>
id: popup
amount: None
amount_str: ''
title: ''
data: ''
description:''
@ -44,7 +44,7 @@ Builder.load_string('''
RefLabel:
data: root.description or _('No description')
TopLabel:
text: _('Amount') + ': ' + app.format_amount_and_units(root.amount_sat)
text: _('Amount') + ': ' + root.amount_str
TopLabel:
text: _('Status') + ': ' + root.status_str
color: root.status_color
@ -94,6 +94,7 @@ class InvoiceDialog(Factory.Popup):
self.key = key
invoice = self.app.wallet.get_invoice(key)
self.amount_sat = invoice.get_amount_sat()
self.amount_str = self.app.format_amount_and_units(self.amount_sat)
self.description = invoice.message
self.is_lightning = invoice.is_lightning()
self.update_status()

View file

@ -17,7 +17,7 @@ if TYPE_CHECKING:
Builder.load_string('''
<RequestDialog@Popup>
id: popup
amount: 0
amount_str: ''
title: ''
description:''
is_lightning: False
@ -44,7 +44,7 @@ Builder.load_string('''
TopLabel:
text: _('Description') + ': ' + root.description or _('None')
TopLabel:
text: _('Amount') + ': ' + app.format_amount_and_units(root.amount_sat)
text: _('Amount') + ': ' + root.amount_str
TopLabel:
text: (_('Address') if not root.is_lightning else _('Payment hash')) + ': '
RefLabel:
@ -93,7 +93,8 @@ class RequestDialog(Factory.Popup):
r = self.app.wallet.get_request(key)
self.is_lightning = r.is_lightning()
self.data = r.invoice if self.is_lightning else self.app.wallet.get_request_URI(r)
self.amount_sat = r.get_amount_sat() or 0
self.amount_sat = r.get_amount_sat()
self.amount_str = self.app.format_amount_and_units(self.amount_sat)
self.description = r.message
self.update_status()