Make BlockchainLifecycle accept only web3Wrapper

This commit is contained in:
Leonid Logvinov
2018-03-12 12:51:37 +01:00
parent 49ff4299c6
commit 32e3cab116
11 changed files with 28 additions and 32 deletions

View File

@@ -10,9 +10,9 @@ import { ApprovalContractEventArgs, LogWithDecodedArgs, Order, TokenEvents, Zero
import { chaiSetup } from './utils/chai_setup';
import { constants } from './utils/constants';
import { TokenUtils } from './utils/token_utils';
import { web3, web3Wrapper } from './utils/web3_wrapper';
const web3 = web3Factory.create();
const blockchainLifecycle = new BlockchainLifecycle(web3);
const blockchainLifecycle = new BlockchainLifecycle(web3Wrapper);
chaiSetup.configure();
const expect = chai.expect;