Updated on 2026-08-14

This commit is contained in:
Tangem 2023-12-21 20:06:20 +02:00
parent bd62089c12
commit 1b5518e8b2
5 changed files with 19 additions and 6 deletions

View file

@ -21,7 +21,7 @@ class DemoTransactionSender(private val walletManager: WalletManager) : Transact
)
}
override suspend fun estimateFee(amount: Amount): Result<TransactionFee> {
override suspend fun estimateFee(amount: Amount, destination: String): Result<TransactionFee> {
return getFee(amount, walletManager.wallet.address)
}