diff options
author | Florian Dold <florian.dold@gmail.com> | 2017-05-29 18:27:50 +0200 |
---|---|---|
committer | Florian Dold <florian.dold@gmail.com> | 2017-05-29 18:27:50 +0200 |
commit | 94d111a94533c0c31231642e8ffe4fbd4ce30096 (patch) | |
tree | 79c9f8ec3754699f8a135630f1ab6ee9be8019e6 /src/crypto/emscInterface-test.ts | |
parent | b5c90d12219ca3a0df173ddf085d2353831a8ef6 (diff) |
lint for unused variables, fix query bug detected by this
Diffstat (limited to 'src/crypto/emscInterface-test.ts')
-rw-r--r-- | src/crypto/emscInterface-test.ts | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/crypto/emscInterface-test.ts b/src/crypto/emscInterface-test.ts index 789ac2509..518ed8e72 100644 --- a/src/crypto/emscInterface-test.ts +++ b/src/crypto/emscInterface-test.ts @@ -114,6 +114,8 @@ test("withdraw-request", (t) => { test("ecdsa", (t) => { const priv = native.EcdsaPrivateKey.create(); const pub1 = priv.getPublicKey(); + t.truthy(priv); + t.truthy(pub1); t.pass(); }); @@ -121,5 +123,7 @@ test("ecdsa", (t) => { test("ecdhe", (t) => { const priv = native.EcdhePrivateKey.create(); const pub = priv.getPublicKey(); + t.truthy(priv); + t.truthy(pub); t.pass(); }); |