forked from ElementsProject/elements
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
DEBUG unit test availablecoins_tests fails intermittently
this is a debugging commit the previously introduced availablecoins_tests in the merge of bitcoin/bitcoin#24584 about 30% of the time the test fails with "invalid schnorr signature" when trying to verify the signature of the transaction it has just created this only occurs when both bech32 and bech32m tests are run in the test. removing either one does not show the issue. even stranger, the issue only occurs when bech32m is run before bech32 as it is in the upstream PR. swapping these around so that bech32 is run before bech32m works around the issue - BUT WHY
- Loading branch information
Showing
5 changed files
with
59 additions
and
17 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
#!/usr/bin/env bash | ||
|
||
# set -euxo pipefail | ||
|
||
for N in $(seq 1 100); do src/test/test_bitcoin --run_test=availablecoins_tests; done |