diff options
author | Alex Browne <stephenalexbrowne@gmail.com> | 2018-07-04 01:49:35 +0800 |
---|---|---|
committer | Alex Browne <stephenalexbrowne@gmail.com> | 2018-07-04 01:49:35 +0800 |
commit | d2ebf4a7772070e3ec255d0551de8c9f2822d4c3 (patch) | |
tree | 1b879ef84055e4e5b686770530a3aded330c096a /packages/contracts/test/utils | |
parent | c5fcea1dbd5e64e72eb5cf360558de9f9b886a16 (diff) | |
download | dexon-sol-tools-d2ebf4a7772070e3ec255d0551de8c9f2822d4c3.tar dexon-sol-tools-d2ebf4a7772070e3ec255d0551de8c9f2822d4c3.tar.gz dexon-sol-tools-d2ebf4a7772070e3ec255d0551de8c9f2822d4c3.tar.bz2 dexon-sol-tools-d2ebf4a7772070e3ec255d0551de8c9f2822d4c3.tar.lz dexon-sol-tools-d2ebf4a7772070e3ec255d0551de8c9f2822d4c3.tar.xz dexon-sol-tools-d2ebf4a7772070e3ec255d0551de8c9f2822d4c3.tar.zst dexon-sol-tools-d2ebf4a7772070e3ec255d0551de8c9f2822d4c3.zip |
Add TransactionReceiptStatus type to ethereum-types
Diffstat (limited to 'packages/contracts/test/utils')
-rw-r--r-- | packages/contracts/test/utils/assertions.ts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/packages/contracts/test/utils/assertions.ts b/packages/contracts/test/utils/assertions.ts index 89e90ad2f..c8031c8a1 100644 --- a/packages/contracts/test/utils/assertions.ts +++ b/packages/contracts/test/utils/assertions.ts @@ -2,7 +2,7 @@ import { RevertReason } from '@0xproject/types'; import { logUtils } from '@0xproject/utils'; import { NodeType } from '@0xproject/web3-wrapper'; import * as chai from 'chai'; -import { TransactionReceipt, TransactionReceiptWithDecodedLogs } from 'ethereum-types'; +import { TransactionReceipt, TransactionReceiptStatus, TransactionReceiptWithDecodedLogs } from 'ethereum-types'; import * as _ from 'lodash'; import { web3Wrapper } from './web3_wrapper'; @@ -93,7 +93,7 @@ export async function expectTransactionFailedAsync(p: sendTransactionResult, rea export async function expectTransactionFailedWithoutReasonAsync(p: sendTransactionResult): Promise<void> { return p .then(async result => { - let txReceiptStatus: null | string | 0 | 1; + let txReceiptStatus: TransactionReceiptStatus; if (_.isString(result)) { // Result is a txHash. We need to make a web3 call to get the // receipt, then get the status from the receipt. |