summaryrefslogtreecommitdiff
path: root/src/headless
diff options
context:
space:
mode:
authorFlorian Dold <florian.dold@gmail.com>2020-01-20 11:53:21 +0100
committerFlorian Dold <florian.dold@gmail.com>2020-01-20 11:53:21 +0100
commitc5906abf106d22cc35b8facdda4313b6125160b9 (patch)
treec66f888d567f17733e8e7c1882156c83a515e707 /src/headless
parenta76219b8debfc3f7e932ec9ad996248e431f437e (diff)
downloadwallet-core-c5906abf106d22cc35b8facdda4313b6125160b9.tar.gz
wallet-core-c5906abf106d22cc35b8facdda4313b6125160b9.tar.bz2
wallet-core-c5906abf106d22cc35b8facdda4313b6125160b9.zip
verboseDetails for pay and withdraw
Diffstat (limited to 'src/headless')
-rw-r--r--src/headless/integrationtest.ts4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/headless/integrationtest.ts b/src/headless/integrationtest.ts
index ee52c4c46..6ec28dc4f 100644
--- a/src/headless/integrationtest.ts
+++ b/src/headless/integrationtest.ts
@@ -186,4 +186,8 @@ export async function runIntegrationTest(args: IntegrationTestArgs) {
);
await myWallet.runUntilDone();
+
+ const history = await myWallet.getHistory();
+
+ console.log("history after integration test:", JSON.stringify(history, undefined, 2));
}