Remove web3Factory.create and remove dev-tools dependency on sol-cov

This commit is contained in:
Leonid Logvinov
2018-05-15 15:14:36 +02:00
parent b86248f13f
commit 1ff34bd0f4
25 changed files with 3294 additions and 846 deletions

View File

@@ -3,7 +3,6 @@ import { Provider } from '@0xproject/types';
import * as Web3 from 'web3';
const providerConfigs = { shouldUseInProcessGanache: true };
const web3Instance = web3Factory.create(providerConfigs);
const provider: Provider = web3Instance.currentProvider;
const provider: Provider = web3Factory.getRpcProvider(providerConfigs);
export { provider };