move blockchain process related files into blockchain module

This commit is contained in:
Iuri Matias 2018-07-20 16:10:58 +03:00
parent 952694f790
commit d7c67ffcf7
5 changed files with 1 additions and 1 deletions

View File

@ -32,7 +32,7 @@ class Embark {
blockchain(env, client) {
this.context = [constants.contexts.blockchain];
return require('./cmds/blockchain/blockchain.js')(this.config.blockchainConfig, client, env, this.isDev(env), () => {}).run();
return require('./modules/blockchain_process/blockchain.js')(this.config.blockchainConfig, client, env, this.isDev(env), () => {}).run();
}
simulator(options) {