summaryrefslogtreecommitdiff
path: root/wallet/src/main/java/net/taler/wallet/withdraw/WithdrawManager.kt
diff options
context:
space:
mode:
Diffstat (limited to 'wallet/src/main/java/net/taler/wallet/withdraw/WithdrawManager.kt')
-rw-r--r--wallet/src/main/java/net/taler/wallet/withdraw/WithdrawManager.kt6
1 files changed, 3 insertions, 3 deletions
diff --git a/wallet/src/main/java/net/taler/wallet/withdraw/WithdrawManager.kt b/wallet/src/main/java/net/taler/wallet/withdraw/WithdrawManager.kt
index 4661946..ca2309d 100644
--- a/wallet/src/main/java/net/taler/wallet/withdraw/WithdrawManager.kt
+++ b/wallet/src/main/java/net/taler/wallet/withdraw/WithdrawManager.kt
@@ -124,7 +124,7 @@ data class ManualWithdrawalDetails(
val amountRaw: Amount,
val amountEffective: Amount,
val numCoins: Int,
- val withdrawalAccountList: List<WithdrawalExchangeAccountDetails>,
+ val withdrawalAccountsList: List<WithdrawalExchangeAccountDetails>,
val ageRestrictionOptions: List<Int>? = null,
)
@@ -211,7 +211,7 @@ class WithdrawManager(
amountRaw = details.amountRaw,
amountEffective = details.amountEffective,
numCoins = details.numCoins,
- withdrawalAccountList = details.withdrawalAccountList,
+ withdrawalAccountList = details.withdrawalAccountsList,
ageRestrictionOptions = details.ageRestrictionOptions,
)
} else getExchangeTos(exchangeBaseUrl, details, showTosImmediately, uri)
@@ -235,7 +235,7 @@ class WithdrawManager(
amountRaw = details.amountRaw,
amountEffective = details.amountEffective,
numCoins = details.numCoins,
- withdrawalAccountList = details.withdrawalAccountList,
+ withdrawalAccountList = details.withdrawalAccountsList,
ageRestrictionOptions = details.ageRestrictionOptions,
tosText = it.content,
tosEtag = it.currentEtag,