You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
388 B
11 lines
388 B
class WalletFactory(object):
|
|
def __new__(cls, config):
|
|
if config.get('bitkey', False):
|
|
# if user requested support for Bitkey device,
|
|
# import Bitkey driver
|
|
from wallet_bitkey import WalletBitkey
|
|
return WalletBitkey(config)
|
|
|
|
# Load standard wallet
|
|
from wallet import Wallet
|
|
return Wallet(config)
|
|
|