Remove debug logs

The classes from the library should be less noisy
This commit is contained in:
2018-04-19 00:23:28 +02:00
parent d5e68e1639
commit 8b0df655e8
3 changed files with 0 additions and 5 deletions

View File

@@ -80,7 +80,6 @@ class Kredits {
}
});
let abi = abis['Registry'];
console.log('Initialize registry contract:', address, abi, provider);
return new ethers.Contract(address, abi, provider);
}
@@ -111,8 +110,6 @@ class Kredits {
}
let contractName = capitalize(name);
console.log(contractName);
console.log(contracts);
let address = this.addresses[contractName];
if (!address || !abis[contractName]) {
throw new Error(`Address or ABI not found for ${contractName}`);