Fixes Benchmark tests

This commit is contained in:
Vitor Pamplona 2023-10-27 14:01:12 -04:00
parent 92a39c4305
commit 8fab00300a
2 changed files with 4 additions and 4 deletions

View File

@ -36,14 +36,14 @@ class GiftWrapReceivingBenchmark {
return ChatMessageEvent.create(
msg = "Hi there! This is a test message",
to = to,
privateKey = sender.privKey!!,
subject = "Party Tonight",
replyTos = emptyList(),
mentions = emptyList(),
zapReceiver = null,
markAsSensitive = true,
zapRaiserAmount = 10000,
geohash = null
geohash = null,
keyPair = sender
)
}

View File

@ -35,14 +35,14 @@ class GiftWrapSigningBenchmark {
return ChatMessageEvent.create(
msg = "Hi there! This is a test message",
to = to,
privateKey = sender.privKey!!,
subject = "Party Tonight",
replyTos = emptyList(),
mentions = emptyList(),
zapReceiver = null,
markAsSensitive = true,
zapRaiserAmount = 10000,
geohash = null
geohash = null,
keyPair = sender
)
}