move provider to contracts

This commit is contained in:
Jonathan Rainville 2018-05-15 12:45:38 -04:00
parent 85d7024740
commit 38dffb9eed
3 changed files with 3 additions and 3 deletions

View File

@ -2,7 +2,7 @@ const ProviderEngine = require('web3-provider-engine');
const RpcSubprovider = require('web3-provider-engine/subproviders/rpc.js');
const bip39 = require("bip39");
const hdkey = require('ethereumjs-wallet/hdkey');
const fs = require('./fs');
const fs = require('../core/fs');
class Provider {
constructor(options) {

View File

@ -10,7 +10,7 @@ const Watch = require('../pipeline/watch.js');
const LibraryManager = require('../versions/library_manager.js');
const Pipeline = require('../pipeline/pipeline.js');
const async = require('async');
const Provider = require('./provider');
const Provider = require('../contracts/provider');
class Engine {
constructor(options) {

View File

@ -1,7 +1,7 @@
/*global describe, it, before*/
const assert = require('assert');
const sinon = require('sinon');
const Provider = require('../lib/core/provider');
const Provider = require('../lib/contracts/provider');
let TestLogger = require('../lib/tests/test_logger.js');
describe('embark.provider', function () {