diff options
author | Fabio Berger <me@fabioberger.com> | 2017-05-26 23:49:26 +0800 |
---|---|---|
committer | Fabio Berger <me@fabioberger.com> | 2017-05-26 23:49:26 +0800 |
commit | aa3ae700b0a971296b84c3c4290031e566005a1f (patch) | |
tree | 127fb9aefc79d2518b92ca7aedbdae1cd8637abf /test | |
parent | 0aabade166be563753bed3bb9ffb64f8a02e0ee8 (diff) | |
download | dexon-sol-tools-aa3ae700b0a971296b84c3c4290031e566005a1f.tar dexon-sol-tools-aa3ae700b0a971296b84c3c4290031e566005a1f.tar.gz dexon-sol-tools-aa3ae700b0a971296b84c3c4290031e566005a1f.tar.bz2 dexon-sol-tools-aa3ae700b0a971296b84c3c4290031e566005a1f.tar.lz dexon-sol-tools-aa3ae700b0a971296b84c3c4290031e566005a1f.tar.xz dexon-sol-tools-aa3ae700b0a971296b84c3c4290031e566005a1f.tar.zst dexon-sol-tools-aa3ae700b0a971296b84c3c4290031e566005a1f.zip |
remove stray console log
Diffstat (limited to 'test')
-rw-r--r-- | test/contract_wrapper_test.ts | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/test/contract_wrapper_test.ts b/test/contract_wrapper_test.ts index 65eceb827..db8f9d103 100644 --- a/test/contract_wrapper_test.ts +++ b/test/contract_wrapper_test.ts @@ -92,7 +92,6 @@ describe('ExchangeWrapper', () => { }); it('should return true if the signature does pertain to the dataHex & address', async () => { const isValid = await exchangeWrapper.isValidSignatureAsync(dataHex, signature, address); - console.log('isValid', isValid); expect(isValid).to.be.true; }); }); |