move blockchain process related files into blockchain module

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

View File

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