mirror of
https://github.com/LBRYFoundation/LBRY-Vault.git
synced 2025-09-05 05:15:12 +00:00
kivy tx dialog: was missing tx.add_input_from_wallet() call
resulted in e.g. incorrect "tx unrelated to wallet" detection for beyond-gap-limit stuff
This commit is contained in:
parent
8a7c3447b3
commit
74a46689d8
1 changed files with 5 additions and 0 deletions
|
@ -130,6 +130,11 @@ class TxDialog(Factory.Popup):
|
|||
self.tx = tx # type: Transaction
|
||||
self._action_button_fn = lambda btn: None
|
||||
|
||||
# if the wallet can populate the inputs with more info, do it now.
|
||||
# as a result, e.g. we might learn an imported address tx is segwit,
|
||||
# or that a beyond-gap-limit address is is_mine
|
||||
tx.add_info_from_wallet(self.wallet)
|
||||
|
||||
def on_open(self):
|
||||
self.update()
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue