Files
lnd/lnwallet
Olaoluwa Osuntokun 40f58da161 lnwallet/chancloser: fix flake in TestRbfCloseClosingNegotiationLocal
In this commit, we fix a flake in the rbf loop sub-test for the
TestRbfCloseClosingNegotiationLocal test case.

The fix here is that when we go from ClosePending for an RBF iteration
loop, we first transition to LocalCloseStart. However we only do this
extra transition if we're doing an iteration (starting from ClosePending).

To fix this, we add a new bool that tracks if this is an iteration or
not. We can then also eliminate the extra assertion at the end, as we'll
terminate in `ClosePending` which is checked by
`assertLocalClosePending()` in `assertSingleRbfIteration`.

Fixes https://github.com/lightningnetwork/lnd/issues/9526.
2025-04-01 17:03:24 -07:00
..
2024-12-04 13:19:00 -07:00
2024-12-04 13:19:00 -07:00
2024-12-04 13:19:00 -07:00
2024-12-04 13:19:00 -07:00
2024-12-04 13:19:00 -07:00
2024-12-04 13:19:00 -07:00
2024-12-04 13:19:00 -07:00
2024-12-04 13:19:00 -07:00
2024-12-04 13:19:00 -07:00
2025-03-21 08:06:18 +08:00
2024-12-04 13:19:00 -07:00
2024-12-04 13:19:00 -07:00
2024-12-04 13:19:00 -07:00
2024-12-04 13:19:00 -07:00
2024-12-04 13:19:00 -07:00
2024-12-04 13:19:00 -07:00
2024-12-20 17:54:03 +08:00

lnwallet

Build Status MIT licensed GoDoc

The lnwallet package implements an abstracted wallet controller that is able to drive channel funding workflows, a number of script utilities, witness generation functions for the various Lightning scripts, revocation key derivation, and the commitment update state machine.

The package is used within lnd as the core wallet of the daemon. The wallet itself is composed of several distinct interfaces that decouple the implementation of things like signing and blockchain access. This separation allows new WalletController implementations to be easily dropped into lnd without disrupting the code base. A series of integration tests at the interface level are also in place to ensure conformance of the implementation with the interface.

Installation and Updating

$  go get -u github.com/lightningnetwork/lnd/lnwallet