Got all tests but one passing

feature/default_network_editable
Dan Finlay 7 years ago
parent 221575a191
commit 04d40b114d
  1. 1
      app/scripts/lib/nonce-tracker.js

@ -30,6 +30,7 @@ class NonceTracker {
const nonceDetails = {}
const networkNonceResult = await this._getNetworkNextNonce(address)
const highestLocallyConfirmed = this._getHighestLocallyConfirmed(address)
const highestConfirmed = Math.max(networkNonceResult.nonce, highestLocallyConfirmed)
const pendingTxs = this.getPendingTransactions(address)
const localNonceResult = this._getHighestContinuousFrom(pendingTxs, highestConfirmed) || 0

Loading…
Cancel
Save