trustedcoin: (trivial) add a stub method in plugin base class

This commit is contained in:
SomberNight 2020-05-29 19:06:56 +02:00
parent b505763867
commit 4a4b0922e5
No known key found for this signature in database
GPG key ID: B33B5F232C6271E9

View file

@ -465,6 +465,9 @@ class TrustedCoinPlugin(BasePlugin):
self.prompt_user_for_otp(wallet, tx, on_success, on_failure)
return wrapper
def prompt_user_for_otp(self, wallet, tx, on_success, on_failure) -> None:
raise NotImplementedError()
@hook
def get_tx_extra_fee(self, wallet, tx: Transaction):
if type(wallet) != Wallet_2fa: