Skip to content

Commit 1b2daaa

Browse files
committed
Fix an unrelated flaky test
1 parent 9c595e3 commit 1b2daaa

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

eclair-core/src/test/scala/fr/acinq/eclair/db/SqliteAuditDbSpec.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ class SqliteAuditDbSpec extends FunSuite {
6161
val e10 = ChannelErrorOccurred(null, randomBytes32, randomKey.publicKey, null, RemoteError(wire.Error(randomBytes32, "remote oops")), isFatal = true)
6262
val e11 = TrampolinePaymentRelayed(42000 msat, 40000 msat, randomBytes32, randomKey.publicKey, Seq(randomBytes32), Seq(randomBytes32))
6363
// TrampolinePaymentRelayed events are converted to ChannelPaymentRelayed events for now. We need to udpate the DB schema to fix this.
64-
val e11bis = ChannelPaymentRelayed(42000 msat, 40000 msat, e11.paymentHash, e11.fromChannelIds.head, e11.toChannelIds.head)
64+
val e11bis = ChannelPaymentRelayed(42000 msat, 40000 msat, e11.paymentHash, e11.fromChannelIds.head, e11.toChannelIds.head, e11.timestamp)
6565

6666
db.add(e1)
6767
db.add(e2)

0 commit comments

Comments
 (0)