summaryrefslogtreecommitdiff
path: root/src/headless
diff options
context:
space:
mode:
authorFlorian Dold <florian.dold@gmail.com>2020-01-22 12:22:57 +0100
committerFlorian Dold <florian.dold@gmail.com>2020-01-22 12:22:57 +0100
commit14103aa0750fd2874480a564b2f0be0932c13e21 (patch)
treeb88cda4f36bdd563849aacafc220b794afce64f7 /src/headless
parent21194fa78137ca0a60487968e32ee9c3941ad812 (diff)
downloadwallet-core-14103aa0750fd2874480a564b2f0be0932c13e21.tar.gz
wallet-core-14103aa0750fd2874480a564b2f0be0932c13e21.tar.bz2
wallet-core-14103aa0750fd2874480a564b2f0be0932c13e21.zip
make verbose details an option
Diffstat (limited to 'src/headless')
-rw-r--r--src/headless/integrationtest.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/headless/integrationtest.ts b/src/headless/integrationtest.ts
index 6ec28dc4f..984ef9c39 100644
--- a/src/headless/integrationtest.ts
+++ b/src/headless/integrationtest.ts
@@ -187,7 +187,7 @@ export async function runIntegrationTest(args: IntegrationTestArgs) {
await myWallet.runUntilDone();
- const history = await myWallet.getHistory();
+ const history = await myWallet.getHistory({ verboseDetails: true });
console.log("history after integration test:", JSON.stringify(history, undefined, 2));
}