Results 65 comments of ffranr

The following JSON segment is an example account modification transaction where the `total_fees` field is set to zero. The transaction deposits 100000 sats into the account. I don't think pool...

Thank you for your input @guggero ! I've started work on this bit: > For each modification TX, look up its previous outpoints, first try wallet transactions And then I'll...

Where batches are concerned, I need to look at the output of this command: https://github.com/lightninglabs/pool/blob/da88f020c51e57a56051b39e82c82f1aac60c2fa/cmd/pool/auction.go#L221

The output of the pool client auction leases command looks like this: ```bash user@lightninglabs:~/pool$ pool_alice auction leases { "leases": [ { "channel_point": "f5d38a1df450eb419fafe803b4b3c2f43b29cada46fd4beee0754ec493f249f5:0", "channel_amt_sat": 100000, "channel_duration_blocks": 2016, "channel_lease_expiry": 0, "channel_node_key":...

Below you'll find an example lnd wallet transaction for a pool account withdraw action. In this example I attempted to withdraw 50000 sats. The preceding balance was 400k sats. Every...

I'm still stuck with a strange withdraw transaction. I would expect at least one `is_our_address` to be `true`. And I thought at least one `output_type` should be taproot. Command: ```...

> it will only count as one review Am I correct in saying that the count, in this case, is made from `a` point of view? Shouldn't we avoid trusting...

Next steps for this PR: 1. Ensure that the normal invoice checking logic (expiry check etc.) is still executed. 2. The interceptor should be able to bypass checks that would...

I've provided a status update on the PR: https://github.com/lightningnetwork/lnd/pull/8669

I think I also need to pass circuit key for latest HTLC along with invoice to settlement interceptor client. This way the client can inspect the correct HTLC.