diff options
author | Greg Hysen <greg.hysen@gmail.com> | 2018-12-05 08:15:35 +0800 |
---|---|---|
committer | Greg Hysen <greg.hysen@gmail.com> | 2018-12-19 05:36:05 +0800 |
commit | 14c97b3ec368904d2e072f4603ab41ea8458aebb (patch) | |
tree | 3f37efe421750aae41ceaba41c7ebc72bfad1469 /packages/contracts/test | |
parent | 58a382d9b69eedc5f618c8d29d130151ba0ed740 (diff) | |
download | dexon-sol-tools-14c97b3ec368904d2e072f4603ab41ea8458aebb.tar dexon-sol-tools-14c97b3ec368904d2e072f4603ab41ea8458aebb.tar.gz dexon-sol-tools-14c97b3ec368904d2e072f4603ab41ea8458aebb.tar.bz2 dexon-sol-tools-14c97b3ec368904d2e072f4603ab41ea8458aebb.tar.lz dexon-sol-tools-14c97b3ec368904d2e072f4603ab41ea8458aebb.tar.xz dexon-sol-tools-14c97b3ec368904d2e072f4603ab41ea8458aebb.tar.zst dexon-sol-tools-14c97b3ec368904d2e072f4603ab41ea8458aebb.zip |
Include threshold balance in constructor of BalanceThresholdFilter contract
Diffstat (limited to 'packages/contracts/test')
-rw-r--r-- | packages/contracts/test/extensions/balance_threshold_filter.ts | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/packages/contracts/test/extensions/balance_threshold_filter.ts b/packages/contracts/test/extensions/balance_threshold_filter.ts index 50fd79439..db4fea77a 100644 --- a/packages/contracts/test/extensions/balance_threshold_filter.ts +++ b/packages/contracts/test/extensions/balance_threshold_filter.ts @@ -126,12 +126,14 @@ describe.only(ContractName.BalanceThresholdFilter, () => { const privateKey = constants.TESTRPC_PRIVATE_KEYS[accounts.indexOf(compliantMakerAddress)]; orderFactory = new OrderFactory(privateKey, defaultOrderParams); // Deploy Compliant Forwarder + const erc721BalanceThreshold = new BigNumber(1); compliantForwarderInstance = await BalanceThresholdFilterContract.deployFrom0xArtifactAsync( artifacts.BalanceThresholdFilter, provider, txDefaults, exchangeInstance.address, yesTokenInstance.address, + erc721BalanceThreshold ); /* const compliantForwarderContract = new BalanceThresholdFilterContract( |