We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3b69013 commit 6dd9f76Copy full SHA for 6dd9f76
eclair-core/src/test/scala/fr/acinq/eclair/transactions/TransactionsSpec.scala
@@ -152,8 +152,8 @@ class TransactionsSpec extends AnyFunSuite with Logging {
152
case _: SimpleTaprootChannelCommitmentFormat => assert(actual == expected)
153
case _: AnchorOutputsCommitmentFormat =>
154
// ECDSA signatures are der-encoded, which creates some variability in signature size compared to the baseline.
155
- assert(actual <= expected + 2)
156
- assert(actual >= expected - 2)
+ assert(actual <= expected + 3)
+ assert(actual >= expected - 3)
157
}
158
159
0 commit comments