Updated on 2026-08-14

This commit is contained in:
Tangem 2025-12-05 18:49:34 +04:00
parent 14addc169c
commit a08e090a8f
26 changed files with 216 additions and 87 deletions

View file

@ -19,12 +19,14 @@ object MockAccounts {
fun createAccountList(
activeAccounts: Int,
totalAccounts: Int = activeAccounts,
totalArchivedAccounts: Int = 0,
userWalletId: UserWalletId = this.userWalletId,
): AccountList {
return AccountList(
userWalletId = userWalletId,
accounts = createAccounts(count = activeAccounts, userWalletId = userWalletId),
totalAccounts = totalAccounts,
totalArchivedAccounts = totalArchivedAccounts,
).getOrNull()!!
}