3rd large migration to outbox.

This commit is contained in:
Vitor Pamplona
2025-07-01 20:38:18 -04:00
parent e10332c957
commit 0cfcfaf899
624 changed files with 19405 additions and 11339 deletions
@@ -51,14 +51,14 @@ class OtsTest {
@Test
fun verifyNostrEvent2() {
val ots = Event.Companion.fromJson(otsEvent2) as OtsEvent
val ots = Event.fromJson(otsEvent2) as OtsEvent
println(resolver.info(ots.otsByteArray()))
assertEquals(1706322179L, ots.verify(resolver))
}
@Test
fun verifyNostrPendingEvent() {
val ots = Event.Companion.fromJson(otsPendingEvent) as OtsEvent
val ots = Event.fromJson(otsPendingEvent) as OtsEvent
println(resolver.info(ots.otsByteArray()))
assertEquals(null, ots.verify(resolver))