Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/main'
Browse files Browse the repository at this point in the history
  • Loading branch information
arcbtc committed Oct 7, 2024
2 parents e9ca7d4 + 7bb9446 commit 67d5fef
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion crud.py
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ async def get_lnurldevice(lnurldevice_id: str, req: Request) -> Optional[Lnurlde


async def get_lnurldevices(wallet_ids: List[str], req: Request) -> List[Lnurldevice]:

q = ",".join(["?"] * len(wallet_ids))
rows = await db.fetchall(
f"""
Expand Down
2 changes: 1 addition & 1 deletion helpers.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

from .crud import create_lnurldevicepayment, get_recent_lnurldevicepayment
from .models import Lnurldevice, LnurldevicePayment

from loguru import logger

async def register_atm_payment(
device: Lnurldevice, payload: str
Expand Down
2 changes: 2 additions & 0 deletions views_lnurl.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,8 @@
)
from .helpers import register_atm_payment, xor_decrypt

from loguru import logger

lnurldevice_lnurl_router = APIRouter()


Expand Down

0 comments on commit 67d5fef

Please sign in to comment.