Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions lnbits/wallets/bark.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
from lnbits.settings import settings

from .base import (
Feature,
InvoiceResponse,
PaymentFailedStatus,
PaymentPendingStatus,
Expand All @@ -33,6 +34,7 @@ def __init__(self, message: str, status_code: int):

class BarkWallet(Wallet):
"""https://second.tech/docs/barkd"""
features: list[Feature] = []

def __init__(self):
if not settings.bark_api_endpoint:
Expand Down
1 change: 1 addition & 0 deletions lnbits/wallets/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@
class Feature(Enum):
nodemanager = "nodemanager"
holdinvoice = "holdinvoice"
descriptionhash = "descriptionhash"
# bolt12 = "bolt12"


Expand Down