mirror of
https://github.com/aljazceru/nutshell.git
synced 2025-12-24 03:54:21 +01:00
* wip blink * Blink working * check fee correctly * add comment * unfix lnbits * unit test blink backend * make format * mypy * settings * add error if blink key not set
12 lines
461 B
Python
12 lines
461 B
Python
# type: ignore
|
|
from ..core.settings import settings
|
|
from .blink import BlinkWallet # noqa: F401
|
|
from .corelightningrest import CoreLightningRestWallet # noqa: F401
|
|
from .fake import FakeWallet # noqa: F401
|
|
from .lnbits import LNbitsWallet # noqa: F401
|
|
from .lndrest import LndRestWallet # noqa: F401
|
|
from .strike import StrikeUSDWallet # noqa: F401
|
|
|
|
if settings.mint_lightning_backend is None:
|
|
raise Exception("MINT_LIGHTNING_BACKEND not configured")
|