mirror of
https://github.com/embarklabs/embark.git
synced 2025-01-25 21:18:51 +00:00
move provider to contracts
This commit is contained in:
parent
85d7024740
commit
38dffb9eed
@ -2,7 +2,7 @@ const ProviderEngine = require('web3-provider-engine');
|
|||||||
const RpcSubprovider = require('web3-provider-engine/subproviders/rpc.js');
|
const RpcSubprovider = require('web3-provider-engine/subproviders/rpc.js');
|
||||||
const bip39 = require("bip39");
|
const bip39 = require("bip39");
|
||||||
const hdkey = require('ethereumjs-wallet/hdkey');
|
const hdkey = require('ethereumjs-wallet/hdkey');
|
||||||
const fs = require('./fs');
|
const fs = require('../core/fs');
|
||||||
|
|
||||||
class Provider {
|
class Provider {
|
||||||
constructor(options) {
|
constructor(options) {
|
@ -10,7 +10,7 @@ const Watch = require('../pipeline/watch.js');
|
|||||||
const LibraryManager = require('../versions/library_manager.js');
|
const LibraryManager = require('../versions/library_manager.js');
|
||||||
const Pipeline = require('../pipeline/pipeline.js');
|
const Pipeline = require('../pipeline/pipeline.js');
|
||||||
const async = require('async');
|
const async = require('async');
|
||||||
const Provider = require('./provider');
|
const Provider = require('../contracts/provider');
|
||||||
|
|
||||||
class Engine {
|
class Engine {
|
||||||
constructor(options) {
|
constructor(options) {
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
/*global describe, it, before*/
|
/*global describe, it, before*/
|
||||||
const assert = require('assert');
|
const assert = require('assert');
|
||||||
const sinon = require('sinon');
|
const sinon = require('sinon');
|
||||||
const Provider = require('../lib/core/provider');
|
const Provider = require('../lib/contracts/provider');
|
||||||
let TestLogger = require('../lib/tests/test_logger.js');
|
let TestLogger = require('../lib/tests/test_logger.js');
|
||||||
|
|
||||||
describe('embark.provider', function () {
|
describe('embark.provider', function () {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user