fix(compiler): fix hang when there is no error

This commit is contained in:
Jonathan Rainville 2018-12-11 13:54:04 -05:00
parent d6308b97de
commit 1be928a525
1 changed files with 1 additions and 2 deletions

View File

@ -161,9 +161,8 @@ function compileSolc(embark, contractFiles, contractDirectories, callback) {
if (isError) {
return next(`Error while compiling`);
}
next(null, contracts);
}
next(null, contracts);
});
},