We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3eec305 commit 7102ee6Copy full SHA for 7102ee6
packages/blockchain/src/index.ts
@@ -488,10 +488,8 @@ export default class Blockchain implements BlockchainInterface {
488
489
await this.dbManager.batch(dbOps)
490
// Output active signers for debugging purposes
491
- let i = 0
492
- for (const signer of this.cliqueActiveSigners()) {
+ for (const [i, signer] of this.cliqueActiveSigners().entries()) {
493
debug(`Clique signer [${i}]: ${signer}`)
494
- i++
495
}
496
497
0 commit comments