whitespace

This commit is contained in:
Michael Bradley, Jr 2018-08-16 15:57:38 -05:00
parent 6282e092f1
commit e9ec968598
1 changed files with 2 additions and 2 deletions

View File

@ -55,7 +55,7 @@ class Pipeline {
next();
},
function writeContracts(next) {
function writeContracts(next) {
self.events.request('contracts:list', (_err, contracts) => {
// ensure the .embark/contracts directory exists (create if not exists)
fs.mkdirp(fs.dappPath(".embark/contracts", ''), (err) => {
@ -79,7 +79,7 @@ class Pipeline {
if(idx < contracts.length - 1) importsHelperFile.write(',\n'); // add a comma if we have more contracts to add
});
}, function(){
importsHelperFile.write('\n}'); // close the module.exports = {}
importsHelperFile.write('\n}'); // close the module.exports = {}
importsHelperFile.close(next); // close the write stream
});
});