lint is king

This commit is contained in:
Iuri Matias 2018-06-08 09:40:23 -04:00
parent 3db8ccd44e
commit 46e085b011
1 changed files with 3 additions and 3 deletions

View File

@ -121,7 +121,7 @@ class Test {
config(options, callback) { config(options, callback) {
const self = this; const self = this;
if (typeof(options) === 'function') { if (typeof (options) === 'function') {
callback = options; callback = options;
options = {}; options = {};
} }
@ -226,7 +226,7 @@ class Test {
{from: self.web3.eth.defaultAccount, gas: 6000000})); {from: self.web3.eth.defaultAccount, gas: 6000000}));
self.contracts[contractName].address = contract.deployedAddress; self.contracts[contractName].address = contract.deployedAddress;
if (self.contracts[contractName].options) { if (self.contracts[contractName].options) {
self.contracts[contractName].options.from = self.contracts[contractName].options.from || web3.eth.defaultAccount; self.contracts[contractName].options.from = self.contracts[contractName].options.from || self.web3.eth.defaultAccount;
self.contracts[contractName].options.data = data; self.contracts[contractName].options.data = data;
} }
eachCb(); eachCb();
@ -273,7 +273,7 @@ class Test {
{from: this.web3.eth.defaultAccount, gas: 6000000}); {from: this.web3.eth.defaultAccount, gas: 6000000});
this.contracts[contractName].address = contract.address; this.contracts[contractName].address = contract.address;
this.contracts[contractName].options.data = contract.code; this.contracts[contractName].options.data = contract.code;
web3.eth.getAccounts().then((accounts) => { this.web3.eth.getAccounts().then((accounts) => {
this.contracts[contractName].options.from = contract.from || accounts[0]; this.contracts[contractName].options.from = contract.from || accounts[0];
}); });
return this.contracts[contractName]; return this.contracts[contractName];