[#953] TransactionOverview fixture

This just checks and validates the already existing TransactionOverview fixture.
This commit is contained in:
Honza Rychnovský 2023-06-22 16:19:36 +02:00 committed by GitHub
parent 89511e6d45
commit 166d24ce37
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -10,10 +10,10 @@ import cash.z.ecc.android.sdk.model.Zatoshi
object TransactionOverviewFixture {
const val ID: Long = 1
val RAW_ID: FirstClassByteArray get() = FirstClassByteArray("rawId".toByteArray())
val MINED_HEIGHT: BlockHeight? = BlockHeight(1)
val MINED_HEIGHT: BlockHeight = BlockHeight(1)
val EXPIRY_HEIGHT: BlockHeight? = null
const val INDEX: Long = 2
val RAW: FirstClassByteArray? get() = FirstClassByteArray("raw".toByteArray())
val RAW: FirstClassByteArray get() = FirstClassByteArray("raw".toByteArray())
const val IS_SENT_TRANSACTION: Boolean = false
@Suppress("MagicNumber")