diff options
author | Leonid Logvinov <logvinov.leon@gmail.com> | 2018-06-29 21:41:58 +0800 |
---|---|---|
committer | Leonid Logvinov <logvinov.leon@gmail.com> | 2018-06-29 22:52:55 +0800 |
commit | 5dea432ebf27cf35cb85823c8f7fdc81fe8ae4f6 (patch) | |
tree | 88c312292b8b5349efe3317bd1e7f1b32e0387f5 /packages/contract-wrappers/test/erc20_wrapper_test.ts | |
parent | 016d82d766d2a15d02b2e93cf2d02a2a59e1feb4 (diff) | |
download | dexon-0x-contracts-5dea432ebf27cf35cb85823c8f7fdc81fe8ae4f6.tar.gz dexon-0x-contracts-5dea432ebf27cf35cb85823c8f7fdc81fe8ae4f6.tar.zst dexon-0x-contracts-5dea432ebf27cf35cb85823c8f7fdc81fe8ae4f6.zip |
Set the interval to 0 in awaitTranscationSuccessAsync
Diffstat (limited to 'packages/contract-wrappers/test/erc20_wrapper_test.ts')
-rw-r--r-- | packages/contract-wrappers/test/erc20_wrapper_test.ts | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/packages/contract-wrappers/test/erc20_wrapper_test.ts b/packages/contract-wrappers/test/erc20_wrapper_test.ts index 6539a0cbf..dd15a9b82 100644 --- a/packages/contract-wrappers/test/erc20_wrapper_test.ts +++ b/packages/contract-wrappers/test/erc20_wrapper_test.ts @@ -592,7 +592,7 @@ describe('ERC20Wrapper', () => { }); it('should get logs with decoded args emitted by Approval', async () => { txHash = await contractWrappers.erc20Token.setUnlimitedProxyAllowanceAsync(tokenAddress, coinbase); - await web3Wrapper.awaitTransactionSuccessAsync(txHash); + await web3Wrapper.awaitTransactionSuccessAsync(txHash, constants.AWAIT_TRANSACTION_MINED_MS); const eventName = ERC20TokenEvents.Approval; const indexFilterValues = {}; const logs = await contractWrappers.erc20Token.getLogsAsync<ERC20TokenApprovalEventArgs>( @@ -610,7 +610,7 @@ describe('ERC20Wrapper', () => { }); it('should only get the logs with the correct event name', async () => { txHash = await contractWrappers.erc20Token.setUnlimitedProxyAllowanceAsync(tokenAddress, coinbase); - await web3Wrapper.awaitTransactionSuccessAsync(txHash); + await web3Wrapper.awaitTransactionSuccessAsync(txHash, constants.AWAIT_TRANSACTION_MINED_MS); const differentEventName = ERC20TokenEvents.Transfer; const indexFilterValues = {}; const logs = await contractWrappers.erc20Token.getLogsAsync( @@ -623,12 +623,12 @@ describe('ERC20Wrapper', () => { }); it('should only get the logs with the correct indexed fields', async () => { txHash = await contractWrappers.erc20Token.setUnlimitedProxyAllowanceAsync(tokenAddress, coinbase); - await web3Wrapper.awaitTransactionSuccessAsync(txHash); + await web3Wrapper.awaitTransactionSuccessAsync(txHash, constants.AWAIT_TRANSACTION_MINED_MS); txHash = await contractWrappers.erc20Token.setUnlimitedProxyAllowanceAsync( tokenAddress, addressWithoutFunds, ); - await web3Wrapper.awaitTransactionSuccessAsync(txHash); + await web3Wrapper.awaitTransactionSuccessAsync(txHash, constants.AWAIT_TRANSACTION_MINED_MS); const eventName = ERC20TokenEvents.Approval; const indexFilterValues = { _owner: coinbase, |