Skip to content

Commit

Permalink
AND-5257 [Send screen] Update TransactionFee model in blockchain sdk
Browse files Browse the repository at this point in the history
Signed-off-by: Maqsudjon Ismoilov <[email protected]>
  • Loading branch information
iMaks99 committed Nov 13, 2023
1 parent 2c6fa62 commit acc4607
Showing 1 changed file with 4 additions and 3 deletions.
Original file line number Diff line number Diff line change
@@ -1,16 +1,17 @@
package com.tangem.blockchain.common.transaction


sealed class TransactionFee {

abstract val normal: Fee

data class Choosable(
override val normal: Fee,
val minimum: Fee,
val normal: Fee,
val priority: Fee,
) : TransactionFee()

data class Single(
val normal: Fee,
override val normal: Fee,
) : TransactionFee()
}

0 comments on commit acc4607

Please sign in to comment.