diff options
author | Leonid Logvinov <logvinov.leon@gmail.com> | 2017-07-12 07:23:19 +0800 |
---|---|---|
committer | Leonid Logvinov <logvinov.leon@gmail.com> | 2017-07-12 08:45:35 +0800 |
commit | fbf89aea1c710f4af131fa8d5653e0f1914ff88a (patch) | |
tree | 639849b7dcf7e02e8b4698f09e6d99c0b71e619d /test/0x.js_test.ts | |
parent | 98e8a6dd706f0a630402d9009ad3dcf9b0ff872d (diff) | |
download | dexon-sol-tools-fbf89aea1c710f4af131fa8d5653e0f1914ff88a.tar dexon-sol-tools-fbf89aea1c710f4af131fa8d5653e0f1914ff88a.tar.gz dexon-sol-tools-fbf89aea1c710f4af131fa8d5653e0f1914ff88a.tar.bz2 dexon-sol-tools-fbf89aea1c710f4af131fa8d5653e0f1914ff88a.tar.lz dexon-sol-tools-fbf89aea1c710f4af131fa8d5653e0f1914ff88a.tar.xz dexon-sol-tools-fbf89aea1c710f4af131fa8d5653e0f1914ff88a.tar.zst dexon-sol-tools-fbf89aea1c710f4af131fa8d5653e0f1914ff88a.zip |
Make getOrderHashHex static
Diffstat (limited to 'test/0x.js_test.ts')
-rw-r--r-- | test/0x.js_test.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/0x.js_test.ts b/test/0x.js_test.ts index c6ede843f..3d9aa105b 100644 --- a/test/0x.js_test.ts +++ b/test/0x.js_test.ts @@ -142,7 +142,7 @@ describe('ZeroEx library', () => { expirationUnixTimestampSec: new BigNumber(0), }; it('calculates the order hash', async () => { - const orderHash = zeroEx.getOrderHashHex(order); + const orderHash = ZeroEx.getOrderHashHex(order); expect(orderHash).to.be.equal(expectedOrderHash); }); }); |