diff options
author | Leonid Logvinov <logvinov.leon@gmail.com> | 2018-10-09 19:13:10 +0800 |
---|---|---|
committer | Leonid Logvinov <logvinov.leon@gmail.com> | 2018-10-09 19:13:10 +0800 |
commit | 7d2c975d7335155b85a7549c25b953d0afacf5cf (patch) | |
tree | 01a364d769f3eede04f4bd1e4a743784d39eea91 /packages/contracts/test/exchange/libs.ts | |
parent | e5153737d8386380675f28dd7cda70deeb1ea37c (diff) | |
parent | 024bcf492ddbdceb033466aeadef220adc145332 (diff) | |
download | dexon-0x-contracts-7d2c975d7335155b85a7549c25b953d0afacf5cf.tar dexon-0x-contracts-7d2c975d7335155b85a7549c25b953d0afacf5cf.tar.gz dexon-0x-contracts-7d2c975d7335155b85a7549c25b953d0afacf5cf.tar.bz2 dexon-0x-contracts-7d2c975d7335155b85a7549c25b953d0afacf5cf.tar.lz dexon-0x-contracts-7d2c975d7335155b85a7549c25b953d0afacf5cf.tar.xz dexon-0x-contracts-7d2c975d7335155b85a7549c25b953d0afacf5cf.tar.zst dexon-0x-contracts-7d2c975d7335155b85a7549c25b953d0afacf5cf.zip |
Merge branch 'development'
Diffstat (limited to 'packages/contracts/test/exchange/libs.ts')
-rw-r--r-- | packages/contracts/test/exchange/libs.ts | 18 |
1 files changed, 1 insertions, 17 deletions
diff --git a/packages/contracts/test/exchange/libs.ts b/packages/contracts/test/exchange/libs.ts index 37234489e..049b7f37a 100644 --- a/packages/contracts/test/exchange/libs.ts +++ b/packages/contracts/test/exchange/libs.ts @@ -1,5 +1,5 @@ import { BlockchainLifecycle } from '@0xproject/dev-utils'; -import { assetDataUtils, eip712Utils, orderHashUtils } from '@0xproject/order-utils'; +import { assetDataUtils, orderHashUtils } from '@0xproject/order-utils'; import { SignedOrder } from '@0xproject/types'; import { BigNumber } from '@0xproject/utils'; import * as chai from 'chai'; @@ -126,22 +126,6 @@ describe('Exchange libs', () => { }); describe('LibOrder', () => { - describe('getOrderSchema', () => { - it('should output the correct order schema hash', async () => { - const orderSchema = await libs.getOrderSchemaHash.callAsync(); - const schemaHashBuffer = orderHashUtils._getOrderSchemaBuffer(); - const schemaHashHex = `0x${schemaHashBuffer.toString('hex')}`; - expect(schemaHashHex).to.be.equal(orderSchema); - }); - }); - describe('getDomainSeparatorSchema', () => { - it('should output the correct domain separator schema hash', async () => { - const domainSeparatorSchema = await libs.getDomainSeparatorSchemaHash.callAsync(); - const domainSchemaBuffer = eip712Utils._getDomainSeparatorSchemaBuffer(); - const schemaHashHex = `0x${domainSchemaBuffer.toString('hex')}`; - expect(schemaHashHex).to.be.equal(domainSeparatorSchema); - }); - }); describe('getOrderHash', () => { it('should output the correct orderHash', async () => { signedOrder = await orderFactory.newSignedOrderAsync(); |