diff options
Diffstat (limited to 'src/headless')
-rw-r--r-- | src/headless/helpers.ts | 3 | ||||
-rw-r--r-- | src/headless/taler-wallet-cli.ts | 2 |
2 files changed, 3 insertions, 2 deletions
diff --git a/src/headless/helpers.ts b/src/headless/helpers.ts index a86b26738..6716ccef4 100644 --- a/src/headless/helpers.ts +++ b/src/headless/helpers.ts @@ -133,8 +133,9 @@ export async function getDefaultNodeWallet( const myBadge = new ConsoleBadge(); + BridgeIDBFactory.enableTracing = true; const myBackend = new MemoryBackend(); - myBackend.enableTracing = false; + myBackend.enableTracing = true; const storagePath = args.persistentStoragePath; if (storagePath) { diff --git a/src/headless/taler-wallet-cli.ts b/src/headless/taler-wallet-cli.ts index bfa1ac4b9..da68f46ae 100644 --- a/src/headless/taler-wallet-cli.ts +++ b/src/headless/taler-wallet-cli.ts @@ -135,7 +135,7 @@ program persistentStoragePath: walletDbPath, }); - const withdrawInfo = await wallet.downloadWithdrawInfo(withdrawUrl); + const withdrawInfo = await wallet.getWithdrawalInfo(withdrawUrl); console.log("withdraw info", withdrawInfo); |