aboutsummaryrefslogtreecommitdiffstats
path: root/contracts/exchange/test/transactions.ts
diff options
context:
space:
mode:
authorAmir Bandeali <abandeali1@gmail.com>2019-02-02 08:28:29 +0800
committerAmir Bandeali <abandeali1@gmail.com>2019-02-06 01:23:09 +0800
commita394967268be3f3d3f7da3507887ee88befee253 (patch)
treeb05b92cdea012c616cb31462f0d238c94ebe21f5 /contracts/exchange/test/transactions.ts
parentc7c4cb9bc6824f12adf352253464c76f177b4914 (diff)
downloaddexon-0x-contracts-a394967268be3f3d3f7da3507887ee88befee253.tar
dexon-0x-contracts-a394967268be3f3d3f7da3507887ee88befee253.tar.gz
dexon-0x-contracts-a394967268be3f3d3f7da3507887ee88befee253.tar.bz2
dexon-0x-contracts-a394967268be3f3d3f7da3507887ee88befee253.tar.lz
dexon-0x-contracts-a394967268be3f3d3f7da3507887ee88befee253.tar.xz
dexon-0x-contracts-a394967268be3f3d3f7da3507887ee88befee253.tar.zst
dexon-0x-contracts-a394967268be3f3d3f7da3507887ee88befee253.zip
Use new transaction schema throughout monorepo
Diffstat (limited to 'contracts/exchange/test/transactions.ts')
-rw-r--r--contracts/exchange/test/transactions.ts5
1 files changed, 2 insertions, 3 deletions
diff --git a/contracts/exchange/test/transactions.ts b/contracts/exchange/test/transactions.ts
index 613953493..4f8c07579 100644
--- a/contracts/exchange/test/transactions.ts
+++ b/contracts/exchange/test/transactions.ts
@@ -8,14 +8,13 @@ import {
OrderFactory,
orderUtils,
provider,
- SignedTransaction,
TransactionFactory,
txDefaults,
web3Wrapper,
} from '@0x/contracts-test-utils';
import { BlockchainLifecycle } from '@0x/dev-utils';
import { assetDataUtils, generatePseudoRandomSalt } from '@0x/order-utils';
-import { OrderWithoutExchangeAddress, RevertReason, SignedOrder } from '@0x/types';
+import { OrderWithoutExchangeAddress, RevertReason, SignedOrder, SignedZeroExTransaction } from '@0x/types';
import { BigNumber } from '@0x/utils';
import * as chai from 'chai';
import * as _ from 'lodash';
@@ -41,7 +40,7 @@ describe('Exchange transactions', () => {
let erc20Balances: ERC20BalancesByOwner;
let signedOrder: SignedOrder;
- let signedTx: SignedTransaction;
+ let signedTx: SignedZeroExTransaction;
let orderWithoutExchangeAddress: OrderWithoutExchangeAddress;
let orderFactory: OrderFactory;
let makerTransactionFactory: TransactionFactory;