From e1369ff7e8fc02116b9c4261036f0e42e3423cf4 Mon Sep 17 00:00:00 2001 From: Florian Dold Date: Mon, 2 Dec 2019 00:42:40 +0100 Subject: the giant refactoring: split wallet into multiple parts --- src/android/index.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/android/index.ts') diff --git a/src/android/index.ts b/src/android/index.ts index ab0d3f7b5..6a29f7946 100644 --- a/src/android/index.ts +++ b/src/android/index.ts @@ -24,10 +24,10 @@ import { DefaultNodeWalletArgs, NodeHttpLib, } from "../headless/helpers"; -import { openPromise, OpenedPromise } from "../promiseUtils"; +import { openPromise, OpenedPromise } from "../util/promiseUtils"; import fs = require("fs"); import axios from "axios"; -import { HttpRequestLibrary, HttpResponse } from "../http"; +import { HttpRequestLibrary, HttpResponse } from "../util/http"; import querystring = require("querystring"); // @ts-ignore: special built-in module @@ -66,7 +66,7 @@ export class AndroidHttpLib implements HttpRequestLibrary { } } - postJson(url: string, body: any): Promise { + postJson(url: string, body: any): Promise { if (this.useNfcTunnel) { const myId = this.requestId++; const p = openPromise(); -- cgit v1.2.3