From 93d3fe3d510853bfe61e7b427fbde91f2bc8cb83 Mon Sep 17 00:00:00 2001 From: Stefan Stammberger Date: Sun, 31 Oct 2021 18:21:46 +0100 Subject: [PATCH] fix: /lightning/list-onchain-tx route naming --- app/routers/lightning.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/routers/lightning.py b/app/routers/lightning.py index a7e18bf..785ef8e 100644 --- a/app/routers/lightning.py +++ b/app/routers/lightning.py @@ -73,7 +73,7 @@ async def getwalletbalance(): @router.get( "/list-onchain-tx", - name=f"{_PREFIX}.decode-pay-req", + name=f"{_PREFIX}.list-onchain-tx", summary="Lists all onchain transactions from the wallet", response_model=List[OnChainTransaction], response_description="A list of all on-chain transactions made.",