Abdullahi Yunus
Abdullahi Yunus
/gemini summary
I am considering making some research and eventually working on this, but considering this [comment](https://github.com/lightningnetwork/lnd/pull/9813#pullrequestreview-2870083159): > However I don't think it's necessary to use TLV here now, as I'm looking...
I will be working on addressing this issue
I have researched this issue, including how pagination controls were implemented in the `payments` [here](https://github.com/lightningnetwork/lnd/blob/fdd28c8d888792ea8fde3c557ba9f2594e0a6ec8/rpcserver.go#L6778C1-L6779C1) and `invoices` [here](https://github.com/lightningnetwork/lnd/blob/fdd28c8d888792ea8fde3c557ba9f2594e0a6ec8/rpcserver.go#L5864) RPCs. From what I have observed for `listchaintxns` RPC, transactions are retrieved...
> Hi @Abdulkbk you're correct that in order to make this efficient for transactions, we'd need to modify `GetTransaction` in btcwallet. Right now it's based solely on start and end...
I added a PR [#8998](https://github.com/lightningnetwork/lnd/pull/8998) addressing this, in case anyone wants to review :)
Thanks for the PR @MPins. I tested the changes and have a few early observations. The `--all` arg returns "status": "all cancelled invoices deleted"; it would be nice to specify...
It took me some time to find a way to cancel an invoice. I'm sharing this to help anyone who wants to test this change. #### Steps 1. Install LND...
> You can also create an invoice with a very short expiration time, e.g., `lncli addinvoice --expiry=1 --amt=1000` > > Cool, it wasn't working for me yesterday but tried with...