mirror of
https://github.com/aljazceru/breez-lnd.git
synced 2026-02-23 15:34:22 +01:00
Merge pull request #5828 from Crypt-iQ/switch_dust_flake_10052021
htlcswitch: remove 5 second timeout for data race unit tests
This commit is contained in:
@@ -436,6 +436,8 @@ messages directly. There is no routing/path finding involved.
|
||||
|
||||
* [Fix missing label on sweep transactions](https://github.com/lightningnetwork/lnd/pull/5895).
|
||||
|
||||
* [Fixed flake that occurred with the switch dust forwarding test under the data race unit build.](https://github.com/lightningnetwork/lnd/pull/5828)
|
||||
|
||||
## Database
|
||||
|
||||
* [Ensure single writer for legacy
|
||||
|
||||
@@ -3449,16 +3449,11 @@ func TestSwitchDustForwarding(t *testing.T) {
|
||||
)
|
||||
require.NoError(t, err)
|
||||
|
||||
select {
|
||||
case result, ok := <-carolResultChan:
|
||||
require.True(t, ok)
|
||||
assertFailureCode(
|
||||
t, result.Error, lnwire.CodeTemporaryChannelFailure,
|
||||
)
|
||||
|
||||
case <-time.After(5 * time.Second):
|
||||
t.Fatal("no result arrived for carol's dust htlc")
|
||||
}
|
||||
result, ok := <-carolResultChan
|
||||
require.True(t, ok)
|
||||
assertFailureCode(
|
||||
t, result.Error, lnwire.CodeTemporaryChannelFailure,
|
||||
)
|
||||
|
||||
// Send an HTLC from Alice to Carol and assert that it is failed at the
|
||||
// call to SendHTLC.
|
||||
|
||||
Reference in New Issue
Block a user