summaryrefslogtreecommitdiff
path: root/src/headless/helpers.ts
diff options
context:
space:
mode:
authorFlorian Dold <florian.dold@gmail.com>2019-08-19 20:24:29 +0200
committerFlorian Dold <florian.dold@gmail.com>2019-08-19 20:24:29 +0200
commit5fa70b1eb39d4fa309ee7109074513ea685a33b6 (patch)
tree77ba75510a32800217034e1646d836272dbd16c1 /src/headless/helpers.ts
parent08b490783bcf2844709b4cb69a093fb8bb679bd3 (diff)
downloadwallet-core-5fa70b1eb39d4fa309ee7109074513ea685a33b6.tar.gz
wallet-core-5fa70b1eb39d4fa309ee7109074513ea685a33b6.tar.bz2
wallet-core-5fa70b1eb39d4fa309ee7109074513ea685a33b6.zip
android helpers
Diffstat (limited to 'src/headless/helpers.ts')
-rw-r--r--src/headless/helpers.ts20
1 files changed, 13 insertions, 7 deletions
diff --git a/src/headless/helpers.ts b/src/headless/helpers.ts
index 975c45e52..5636b3921 100644
--- a/src/headless/helpers.ts
+++ b/src/headless/helpers.ts
@@ -36,12 +36,6 @@ import fs = require("fs");
const enableTracing = false;
-class ConsoleNotifier implements Notifier {
- notify(): void {
- // nothing to do.
- }
-}
-
class ConsoleBadge implements Badge {
startBusy(): void {
enableTracing && console.log("NOTIFICATION: busy");
@@ -120,6 +114,12 @@ interface DefaultNodeWalletArgs {
* the wallet database is stored only in memory.
*/
persistentStoragePath?: string;
+
+
+ /**
+ * Handler for asynchronous notifications from the wallet.
+ */
+ notifyHandler?: (reason: string) => void;
}
/**
@@ -128,7 +128,13 @@ interface DefaultNodeWalletArgs {
export async function getDefaultNodeWallet(
args: DefaultNodeWalletArgs = {},
): Promise<Wallet> {
- const myNotifier = new ConsoleNotifier();
+ const myNotifier: Notifier = {
+ notify() {
+ if (args.notifyHandler) {
+ args.notifyHandler("");
+ }
+ }
+ }
const myBadge = new ConsoleBadge();