lnd.xprv/lnwallet
nsa 2149157d49 channeldb: filter out unsigned acked updates in AdvanceCommitChainTail
This commit moves the deletion of all updates under the unsigned
acked updates key from AppendRemoteCommitChain to
AdvanceCommitChainTail. This is done because if we went down after
signing for these updates but before receiving a revocation, we would
incorrectly reject their commitment signature:

Alice                Bob
      -----add----->
      -----sig----->
      <----rev------
      <----sig------
      -----rev----->
      <----fail-----
      <----sig------
      -----rev----->
      -----sig----->
      *reconnect*
      <----rev------
      <----add------
      x----sig------

It is also important to note that filtering is required when we
receive a revocation to ensure that we aren't erroneously deleting
remote updates. Take the following state transitions:

 Alice                Bob
       -----add----->
       -----sig----->
       <----rev------
       <----sig------
       -----rev----->
       -----add----->
       -----sig----->
       <----fail-----
       <----sig------
       -----rev-----> (alice stores updates here)
       <----rev------

In the above case, if Alice deleted all updates rather than filtering
when receiving the final revocation from Bob, then Alice would have
to force close the channel due to missing updates. Since Alice hasn't
signed for any of the unsigned acked updates, she should not filter any
of them out.
2020-07-27 15:41:48 -04:00
..
btcwallet multi: add a rpc endpoint to track the recovery process 2020-06-25 15:49:54 +08:00
chainfee lnwallet/channel: enforce absolute fee floor of 250 sat/kw 2020-04-21 12:37:34 -07:00
chancloser multi: add relative thaw height interpretation 2020-07-02 12:05:49 -07:00
chanfunding lnwallet+rpcserver: add no_publish flag to PSBT assembler 2020-07-08 17:12:57 -07:00
chanvalidate input: pass input.Signature to multisig spend 2020-04-10 14:27:35 -07:00
channel_test.go channeldb: filter out unsigned acked updates in AdvanceCommitChainTail 2020-07-27 15:41:48 -04:00
channel.go lnwallet: correct fetchParent godoc 2020-07-21 10:45:57 -04:00
commit_sort_test.go lnwallet/commit_sort: add commit sorting with htlc tie breaker 2019-06-05 08:34:45 +02:00
commit_sort.go lnwallet/commit_sort: add commit sorting with htlc tie breaker 2019-06-05 08:34:45 +02:00
commitment.go lnwallet/channel: tie-break HTLCs by cltv when locating 2020-04-02 17:51:02 -07:00
config.go chainfee: create new chainfee package extracting fees from lnwallet 2019-10-31 16:41:57 -07:00
errors.go misc: fix error formatting in multiple files 2020-04-24 19:15:08 +02:00
interface_test.go chainntfns: rename to CacheConfig and QueryDisabled 2020-07-14 19:24:44 -07:00
interface.go multi: add a rpc endpoint to track the recovery process 2020-06-25 15:49:54 +08:00
log.go chainfee: create new chainfee package extracting fees from lnwallet 2019-10-31 16:41:57 -07:00
parameters.go multi: move Input interface and related code 2019-01-31 13:25:33 +01:00
README.md multi: fix typos in comments 2018-04-17 19:03:27 -07:00
reservation.go lnwallet: don't publish funding TX if flag set on assembler 2020-07-08 17:13:14 -07:00
sigpool.go multi: return input.Signature from SignOutputRaw 2020-04-10 14:27:35 -07:00
test_utils.go input: pass input.Signature to multisig spend 2020-04-10 14:27:35 -07:00
test_vectors_anchors.json lnwallet/test: anchor test vectors 2020-07-06 12:45:17 +02:00
test_vectors_legacy.json lnwallet/test: convert test vectors to json 2020-07-06 12:45:13 +02:00
transactions_test.go lnwallet/test: anchor test vectors 2020-07-06 12:45:17 +02:00
transactions.go lnwallet: set 2nd level sequence according to channel type 2020-03-09 12:59:33 +01:00
wallet.go lnwallet: remove redundant return 2020-04-24 19:15:08 +02: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