get rid of one more line and get rid of unused cb

Signed-off-by: VoR0220 <catalanor0220@gmail.com>
This commit is contained in:
VoR0220 2018-06-12 12:12:37 -05:00
parent 43c8525d48
commit a601541bb0
1 changed files with 1 additions and 2 deletions

View File

@ -11,7 +11,7 @@ class Profiler {
this.registerConsoleCommand();
}
profile(contractName, contract, cb) {
profile(contractName, contract) {
const self = this;
let table = new asciiTable(contractName);
table.setHeading('Function', 'Payable', 'Mutability', 'Inputs', 'Outputs', 'Gas Estimates');
@ -21,7 +21,6 @@ class Profiler {
return;
}
contract.abiDefinition.forEach((abiMethod) => {
console.log("Abi Method Gastimate: ", gastimates[abiMethod.name]);
switch(abiMethod.type) {
case "constructor":
table.addRow("constructor", abiMethod.payable, abiMethod.stateMutability, self.formatParams(abiMethod.inputs), self.formatParams(abiMethod.outputs), gastimates['constructor']);