mirror of
https://github.com/LBRYFoundation/LBRY-Vault.git
synced 2025-08-23 17:47:31 +00:00
Used to get: jsonrpclib.jsonrpc.ProtocolError: (-32603, u'Server error: File "src/electrum/lib/plugins.py", line 144, in wallet_plugin_loader | KeyError: \'trustedcoin\'') Now get: jsonrpclib.jsonrpc.ProtocolError: (-32603, u'Server error: File "src/electrum/lib/plugins.py", line 81, in load_plugin | RuntimeError: cmdline implementation for trustedcoin plugin not found')
11 lines
468 B
Python
11 lines
468 B
Python
from electrum.i18n import _
|
|
|
|
fullname = _('Two Factor Authentication')
|
|
description = ''.join([
|
|
_("This plugin adds two-factor authentication to your wallet."), '<br/>',
|
|
_("For more information, visit"),
|
|
" <a href=\"https://api.trustedcoin.com/#/electrum-help\">https://api.trustedcoin.com/#/electrum-help</a>"
|
|
])
|
|
requires_wallet_type = ['2fa']
|
|
registers_wallet_type = ('twofactor', '2fa', _("Wallet with two-factor authentication"))
|
|
available_for = ['qt']
|