diff options
author | Leonid Logvinov <logvinov.leon@gmail.com> | 2017-05-25 01:23:35 +0800 |
---|---|---|
committer | Leonid Logvinov <logvinov.leon@gmail.com> | 2017-05-25 01:23:35 +0800 |
commit | 945a583e895dfd9488aecdfab1bec22449bf7878 (patch) | |
tree | 47a03c741fb5a8eeeb224610c6982fab8f69a868 /test/0x.js.ts | |
parent | d8670e5768a97aa8068093dfbb261ef983c99b00 (diff) | |
download | dexon-sol-tools-945a583e895dfd9488aecdfab1bec22449bf7878.tar dexon-sol-tools-945a583e895dfd9488aecdfab1bec22449bf7878.tar.gz dexon-sol-tools-945a583e895dfd9488aecdfab1bec22449bf7878.tar.bz2 dexon-sol-tools-945a583e895dfd9488aecdfab1bec22449bf7878.tar.lz dexon-sol-tools-945a583e895dfd9488aecdfab1bec22449bf7878.tar.xz dexon-sol-tools-945a583e895dfd9488aecdfab1bec22449bf7878.tar.zst dexon-sol-tools-945a583e895dfd9488aecdfab1bec22449bf7878.zip |
Address feedback
Diffstat (limited to 'test/0x.js.ts')
-rw-r--r-- | test/0x.js.ts | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/test/0x.js.ts b/test/0x.js.ts index 3d9a7a810..d59df8894 100644 --- a/test/0x.js.ts +++ b/test/0x.js.ts @@ -4,6 +4,7 @@ import 'mocha'; describe('ZeroEx library', () => { describe('#isValidSignature', () => { + // This test data was borrowed from the JSON RPC documentation // Source: https://github.com/ethereum/wiki/wiki/JSON-RPC#eth_sign const data = '0xdeadbeaf'; const signature = { @@ -66,7 +67,7 @@ describe('ZeroEx library', () => { const isValid = ZeroEx.isValidSignature(data, wrongSignature, address); expect(isValid).to.be.false; }); - it('should return true for valid signature', () => { + it('should return true if the signature does pertain to the data & address', () => { const isValid = ZeroEx.isValidSignature(data, signature, address); expect(isValid).to.be.true; }); |