This commit is contained in:
Sebastian 2022-09-20 20:14:57 -03:00
parent 415874fdfb
commit 7adaeff0a5
No known key found for this signature in database
GPG Key ID: BE4FF68352439FC1

View File

@ -262,7 +262,7 @@ export function selectWithdrawalDenominations(
DenominationRecord.getValue(d), DenominationRecord.getValue(d),
d.fees.feeWithdraw, d.fees.feeWithdraw,
).amount; ).amount;
for (; ;) { for (;;) {
if (Amounts.cmp(remaining, cost) < 0) { if (Amounts.cmp(remaining, cost) < 0) {
break; break;
} }
@ -904,7 +904,8 @@ export async function updateWithdrawalDenoms(
denom.verificationStatus === DenominationVerificationStatus.Unverified denom.verificationStatus === DenominationVerificationStatus.Unverified
) { ) {
logger.trace( logger.trace(
`Validating denomination (${current + 1}/${denominations.length `Validating denomination (${current + 1}/${
denominations.length
}) signature of ${denom.denomPubHash}`, }) signature of ${denom.denomPubHash}`,
); );
let valid = false; let valid = false;