diff options
author | Florian Dold <florian.dold@gmail.com> | 2016-02-01 15:10:20 +0100 |
---|---|---|
committer | Florian Dold <florian.dold@gmail.com> | 2016-02-01 15:10:20 +0100 |
commit | 42a0076f5951d303635b2e544aa66112cdb9abfe (patch) | |
tree | 432874ec0e7dbe6c831992f70a468bc1b6719901 /extension/lib/wallet/emscriptif.ts | |
parent | b150470eb60017b4ccdf56351428f9452a207fc8 (diff) |
new fulfillment protocol
Diffstat (limited to 'extension/lib/wallet/emscriptif.ts')
-rw-r--r-- | extension/lib/wallet/emscriptif.ts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/extension/lib/wallet/emscriptif.ts b/extension/lib/wallet/emscriptif.ts index 223fe7348..b11d845f0 100644 --- a/extension/lib/wallet/emscriptif.ts +++ b/extension/lib/wallet/emscriptif.ts @@ -14,7 +14,7 @@ TALER; see the file COPYING. If not, If not, see <http://www.gnu.org/licenses/> */ -import {AmountJson_interface} from "./types"; +import {AmountJson} from "./types"; import * as EmscWrapper from "../emscripten/emsc"; /** @@ -288,7 +288,7 @@ arenaStack.push(new SyncArena()); export class Amount extends ArenaObject { - constructor(args?: AmountJson_interface, arena?: Arena) { + constructor(args?: AmountJson, arena?: Arena) { super(arena); if (args) { this.nativePtr = emscAlloc.get_amount(args.value, |