channeldb: fix data race in TestSerializeRevocationLog

When testing serializing revocation log, we need to also copy its
`HTLCEntries` as the serialization of the HTLC involves a writing to the
`htlc.amtTlv` field.
This commit is contained in:
yyforyongyu 2022-05-30 19:14:54 +08:00
parent 1e0d6ec0ad
commit 2b5d535208
No known key found for this signature in database
GPG Key ID: 9BCD95C4FF296868
2 changed files with 4 additions and 0 deletions

View File

@ -213,6 +213,7 @@ func TestSerializeRevocationLog(t *testing.T) {
// Copy the testRevocationLog.
rl := testRevocationLog
rl.HTLCEntries = []*HTLCEntry{&testHTLCEntry}
// Write the tlv stream.
buf := bytes.NewBuffer([]byte{})

View File

@ -283,6 +283,9 @@ from occurring that would result in an erroneous force close.](https://github.co
* [Minor fix](https://github.com/lightningnetwork/lnd/pull/6535) to
how bitcoind.rpccookie and bitocind.config are parsed from config file.
* [Fix a data race found when running unit test for revocation log](https://github.com/lightningnetwork/lnd/pull/6594).
## RPC Server
* [Add value to the field