fix: using wrong variable

This commit is contained in:
Sebastian 2023-01-18 17:29:36 -03:00
parent 5e129abe9e
commit 733d06c8d4
No known key found for this signature in database
GPG Key ID: BE4FF68352439FC1
2 changed files with 2 additions and 2 deletions

View File

@ -199,7 +199,7 @@ async function getDenomSelStateFromBackup(
return {
selectedDenoms,
totalCoinValue: Amounts.stringify(totalCoinValue),
totalWithdrawCost: Amounts.stringify(totalCoinValue),
totalWithdrawCost: Amounts.stringify(totalWithdrawCost),
};
}

View File

@ -225,7 +225,7 @@ export function selectWithdrawalDenominations(
return {
selectedDenoms,
totalCoinValue: Amounts.stringify(totalCoinValue),
totalWithdrawCost: Amounts.stringify(totalCoinValue),
totalWithdrawCost: Amounts.stringify(totalWithdrawCost),
};
}