commit 569a13cf456197beddc17cc6928be335410a1463
parent 2bd208dd9e345370e8e498a43fa5177ede7c1626
Author: Florian Dold <florian@dold.me>
Date: Fri, 29 May 2026 13:28:13 +0200
-actually print choices
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/packages/taler-wallet-cli/src/index.ts b/packages/taler-wallet-cli/src/index.ts
@@ -164,7 +164,7 @@ async function doPay(
console.log(`Please choose an option with --choice-index.`);
processExit(EXIT_INPUT_REQUIRED);
} else {
- console.log(`choices:`);
+ console.log(`${j2s(choices)}`);
choiceIndex = await askChoice(choices.choices.length);
}
} else {