@@ -70,7 +70,7 @@ class Engine {
7070 return service . apply ( this , [ options ] ) ;
7171 }
7272
73- pipelineService ( options ) {
73+ pipelineService ( _options ) {
7474 let self = this ;
7575 this . logger . setStatus ( "Building Assets" ) ;
7676 let pipeline = new Pipeline ( {
@@ -100,7 +100,7 @@ class Engine {
100100 //});
101101 }
102102
103- codeGeneratorService ( options ) {
103+ codeGeneratorService ( _options ) {
104104 let self = this ;
105105 let generateCode = function ( contractsManager ) {
106106 let codeGenerator = new CodeGenerator ( {
@@ -131,7 +131,7 @@ class Engine {
131131 events : this . events
132132 } ) ;
133133
134- this . events . on ( 'file-event' , function ( fileType , path ) {
134+ this . events . on ( 'file-event' , function ( fileType , _path ) {
135135 // TODO: for now need to deploy on asset chanes as well
136136 // because the contractsManager config is corrupted after a deploy
137137 //if (fileType === 'contract' || fileType === 'config') {
@@ -142,7 +142,7 @@ class Engine {
142142 } ) ;
143143 }
144144
145- fileWatchService ( options ) {
145+ fileWatchService ( _options ) {
146146 this . logger . setStatus ( "Watching for changes" ) ;
147147 let watch = new Watch ( { logger : this . logger , events : this . events } ) ;
148148 watch . start ( ) ;
@@ -174,7 +174,7 @@ class Engine {
174174 } ) ;
175175 }
176176
177- ipfsService ( options ) {
177+ ipfsService ( _options ) {
178178 let self = this ;
179179 self . servicesMonitor . addCheck ( 'IPFS' , function ( cb ) {
180180 utils . checkIsAvailable ( 'http://localhost:5001' , function ( available ) {
0 commit comments