lntest: keep all failed payments by default for HarnessNode

In this commit, we fix a detected flake: we go to make a payment, and
then want to assert that 2 attempts we required. The existing logic
assumes that the success and the payment will still be on disk. With a
recent PR, we now delete failed payments by default, but after the fact,
in a non-atomic fashion.

We fix this issue simply by having all the nodes keep around failed
payments for the sake of all the old itests that assumed this
information would always be on disk.

Introduced in: https://github.com/lightningnetwork/lnd/pull/6438.

Fixes https://github.com/lightningnetwork/lnd/issues/6711.
This commit is contained in:
Olaoluwa Osuntokun 2022-07-07 16:53:49 -07:00
parent dc35f78ebc
commit 2a18263336
No known key found for this signature in database
GPG Key ID: 3BBD59E99B280306
2 changed files with 4 additions and 0 deletions

View File

@ -60,6 +60,8 @@
* [The HtlcSwitch now waits for a ChannelLink to stop before replacing it. This fixes a race
condition.](https://github.com/lightningnetwork/lnd/pull/6642)
* [Integration tests now always run with nodes never deleting failed payments](https://github.com/lightningnetwork/lnd/pull/6712).
## Code Health
### Code cleanup, refactor, typo fixes
@ -83,6 +85,7 @@
* Eugene Siegel
* Slyghtning
* Oliver Gugger
* Olaoluwa Osuntokun
* Priyansh Rastogi
* Tommy Volk
* Yong Yu

View File

@ -217,6 +217,7 @@ func (cfg *BaseNodeConfig) GenArgs() []string {
"--nobootstrap",
"--debuglevel=debug",
"--bitcoin.defaultchanconfs=1",
"--keep-failed-payment-attempts",
fmt.Sprintf("--db.batch-commit-interval=%v", commitInterval),
fmt.Sprintf("--bitcoin.defaultremotedelay=%v", DefaultCSV),
fmt.Sprintf("--rpclisten=%v", cfg.RPCAddr()),