mirror of
https://github.com/LBRYFoundation/LBRY-Vault.git
synced 2025-09-03 02:35:20 +00:00
another cosignerpool fix
This commit is contained in:
parent
e18e323c45
commit
38858c25fd
1 changed files with 2 additions and 1 deletions
|
@ -35,6 +35,7 @@ from electrum import bitcoin, util
|
||||||
from electrum import transaction
|
from electrum import transaction
|
||||||
from electrum.plugins import BasePlugin, hook
|
from electrum.plugins import BasePlugin, hook
|
||||||
from electrum.i18n import _
|
from electrum.i18n import _
|
||||||
|
from electrum.wallet import Multisig_Wallet
|
||||||
|
|
||||||
from electrum_gui.qt.transaction_dialog import show_transaction
|
from electrum_gui.qt.transaction_dialog import show_transaction
|
||||||
|
|
||||||
|
@ -114,7 +115,7 @@ class Plugin(BasePlugin):
|
||||||
|
|
||||||
def update(self, window):
|
def update(self, window):
|
||||||
wallet = window.wallet
|
wallet = window.wallet
|
||||||
if wallet.wallet_type not in ['2of2', '2of3']:
|
if type(wallet) != Multisig_Wallet:
|
||||||
return
|
return
|
||||||
if self.listener is None:
|
if self.listener is None:
|
||||||
self.print_error("starting listener")
|
self.print_error("starting listener")
|
||||||
|
|
Loading…
Add table
Reference in a new issue