nonce-tracker - getlocalNextNonce - add entry to nonceDetails

This commit is contained in:
kumavis 2017-08-22 14:17:00 -07:00
parent a7e3dc8327
commit 6d596bd9e6
1 changed files with 1 additions and 1 deletions

View File

@ -105,7 +105,7 @@ class NonceTracker {
// no local tx history so next must be first (zero)
nextNonce = 0
}
const nonceDetails = { highestNonce }
const nonceDetails = { highestNonce, haveHighestNonce }
return { name: 'local', nonce: nextNonce, details: nonceDetails }
}