Browse Source

also check the balance is zero to stop scanning

master
Gaëtan Renaudeau 7 years ago
parent
commit
303ee096a7
  1. 2
      src/bridge/EthereumJSBridge.js

2
src/bridge/EthereumJSBridge.js

@ -199,7 +199,7 @@ const EthereumBridge: WalletBridge<Transaction> = {
const freshAddress = address
const accountId = `ethereumjs:${currency.id}:${address}:${publicKey}`
if (txs.length === 0) {
if (txs.length === 0 && balance.isZero()) {
// this is an empty account
if (isStandard) {
if (newAccountCount === 0) {

Loading…
Cancel
Save