fix syntax errors in trustedcoin plugin
This commit is contained in:
@@ -79,7 +79,7 @@ class Plugin(TrustedCoinPlugin):
|
|||||||
def sign_tx(self, window, tx):
|
def sign_tx(self, window, tx):
|
||||||
self.print_error("twofactor:sign_tx")
|
self.print_error("twofactor:sign_tx")
|
||||||
wallet = window.wallet
|
wallet = window.wallet
|
||||||
assert isinstace(wallet, self.wallet_class)
|
assert isinstance(wallet, self.wallet_class)
|
||||||
if not wallet.can_sign_without_server():
|
if not wallet.can_sign_without_server():
|
||||||
auth_code = None
|
auth_code = None
|
||||||
if need_server(wallet, tx):
|
if need_server(wallet, tx):
|
||||||
@@ -101,7 +101,7 @@ class Plugin(TrustedCoinPlugin):
|
|||||||
@hook
|
@hook
|
||||||
def abort_send(self, window):
|
def abort_send(self, window):
|
||||||
wallet = window.wallet
|
wallet = window.wallet
|
||||||
assert isinstace(wallet, self.wallet_class)
|
assert isinstance(wallet, self.wallet_class)
|
||||||
if not wallet.can_sign_without_server():
|
if not wallet.can_sign_without_server():
|
||||||
if wallet.billing_info is None:
|
if wallet.billing_info is None:
|
||||||
# request billing info before forming the transaction
|
# request billing info before forming the transaction
|
||||||
|
|||||||
Reference in New Issue
Block a user