remove unnecessary var

This commit is contained in:
viktor 2018-01-29 21:40:43 +03:00
parent f27f2a2f2b
commit 35d2cfd309
1 changed files with 1 additions and 3 deletions

View File

@ -10,11 +10,9 @@ export default class KeysManager {
console.log('Keys Manager ', KEYS_MANAGER_ADDRESS);
const branch = helpers.getBranch(netId);
let that = this;
let KeysManagerAbi = await helpers.getABI(branch, 'KeysManager')
that.keysInstance = new this.web3_10.eth.Contract(KeysManagerAbi, KEYS_MANAGER_ADDRESS);
this.keysInstance = new this.web3_10.eth.Contract(KeysManagerAbi, KEYS_MANAGER_ADDRESS);
}
async isInitialKeyValid(initialKey) {