diff options
author | Florian Dold <florian.dold@gmail.com> | 2017-05-27 18:43:11 +0200 |
---|---|---|
committer | Florian Dold <florian.dold@gmail.com> | 2017-05-27 18:43:34 +0200 |
commit | d381226f21f1d0605d06ccae56c38ab6b12f88f0 (patch) | |
tree | d431cd99d34227c321daa786a33499cc41a8806b /src/wallet.ts | |
parent | 67a50513219dd8536ce2d7888a99cbfc3c3cabcb (diff) |
Simplify loading of the emscripten lib.
This removes an ugly hack and makes it possible to access the emscripten
compiled library from within nodejs test cases more easily.
Diffstat (limited to 'src/wallet.ts')
-rw-r--r-- | src/wallet.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/wallet.ts b/src/wallet.ts index f48fcc76e..a2a9e83f5 100644 --- a/src/wallet.ts +++ b/src/wallet.ts @@ -72,7 +72,7 @@ import { flatMap, getTalerStampSec, } from "./helpers"; -import {CryptoApi} from "./cryptoApi"; +import {CryptoApi} from "./crypto/cryptoApi"; import URI = require("urijs"); |