taler-typescript-core

Wallet core logic and WebUIs for various components
Log | Files | Refs | Submodules | README | LICENSE

commit 39bf3eeb89e18e7dc7baea8485b0ab2b04323e28
parent ab8445f5dce12c53c12b092435a24cbb81b93f07
Author: Sebastian <sebasjm@gmail.com>
Date:   Wed, 31 Jul 2024 11:56:13 -0300

fix spell

Diffstat:
Mpackages/taler-wallet-core/src/db.ts | 2+-
Mpackages/taler-wallet-core/src/exchanges.ts | 2+-
2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/packages/taler-wallet-core/src/db.ts b/packages/taler-wallet-core/src/db.ts @@ -716,7 +716,7 @@ export interface ExchangeEntryRecord { * existing exchange entry. * * We keep the retry counter here instead of using the task retries, - * as the task succeeded, the exchange is just not useable. + * as the task succeeded, the exchange is just not usable. */ updateRetryCounter?: number; diff --git a/packages/taler-wallet-core/src/exchanges.ts b/packages/taler-wallet-core/src/exchanges.ts @@ -981,7 +981,7 @@ async function checkExchangeEntryOutdated( numOkay++; } } - logger.trace(`Of these, ${numOkay} are useable`); + logger.trace(`Of these, ${numOkay} are usable`); return numOkay === 0; }