[fix] remove unexpected console.log

@types
neeboo 6 years ago
parent 82191a278f
commit 670fc7e973
  1. 3
      packages/harmony-account/src/account.ts

@ -109,14 +109,13 @@ class Account {
'latest',
]),
);
console.log({ balance });
const nonce = getResultForData(
await this.messenger.send(RPCMethod.GetTransactionCount, [
this.address,
'latest',
]),
);
console.log({ nonce });
this.balance = hexToNumber(balance);
this.nonce = Number.parseInt(hexToNumber(nonce), 10);

Loading…
Cancel
Save