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.
TOIDTest
1 parent 00cfb99 commit c3f63e5Copy full SHA for c3f63e5
src/test/kotlin/org/stellar/sdk/TOIDTest.kt
@@ -16,11 +16,8 @@ class TOIDTest :
16
nameFn = { (toid, id) ->
17
"TOID(${toid.ledgerSequence}, ${toid.transactionOrder}, ${toid.operationIndex}) should be $id"
18
},
19
- TOID(0, 0, 1) to 1L,
20
TOID(0, 0, 4095) to 4095L,
21
- TOID(0, 1, 0) to 4096L,
22
TOID(0, 1048575, 0) to 4294963200L,
23
- TOID(1, 0, 0) to 4294967296L,
24
TOID(2147483647, 0, 0) to 9223372032559808512L,
25
TOID(1, 1, 1) to (ledgerFirst + txFirst + opFirst),
26
TOID(1, 1, 0) to (ledgerFirst + txFirst),
0 commit comments