add missing return to determineArguments method

This commit is contained in:
Iuri Matias 2016-12-02 06:48:32 -05:00
parent 5ac4c0f327
commit 004d1eecf4
1 changed files with 2 additions and 0 deletions

View File

@ -28,6 +28,8 @@ Deploy.prototype.determineArguments = function(suppliedArgs) {
realArgs.push(arg); realArgs.push(arg);
} }
} }
return realArgs;
}; };
Deploy.prototype.checkAndDeployContract = function(contract, params, callback) { Deploy.prototype.checkAndDeployContract = function(contract, params, callback) {