Skip to content

Commit

Permalink
upgrade latest oclif
Browse files Browse the repository at this point in the history
  • Loading branch information
aaronmgdr committed Jan 17, 2024
1 parent c99365c commit 38b14ab
Show file tree
Hide file tree
Showing 3 changed files with 1,414 additions and 76 deletions.
18 changes: 9 additions & 9 deletions packages/cli/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -43,14 +43,14 @@
"@celo/wallet-local": "^5.1.1",
"@ethereumjs/util": "8.0.5",
"@ledgerhq/hw-transport-node-hid": "^6.27.4",
"@oclif/core": "^3.15.0",
"@oclif/plugin-autocomplete": "^3.0.4",
"@oclif/plugin-commands": "^3.1.0",
"@oclif/plugin-help": "^6.0.9",
"@oclif/plugin-not-found": "^3.0.7",
"@oclif/plugin-plugins": "^4.1.14",
"@oclif/plugin-warn-if-update-available": "^3.0.8",
"@types/command-exists": "^1.2.0",
"@oclif/core": "^3.18.1",
"@oclif/plugin-autocomplete": "^3.0.5",
"@oclif/plugin-commands": "^3.1.1",
"@oclif/plugin-help": "^6.0.12",
"@oclif/plugin-not-found": "^3.0.9",
"@oclif/plugin-plugins": "^4.1.17",
"@oclif/plugin-warn-if-update-available": "^3.0.9",
"@types/command-exists": "^1.2.3",
"bignumber.js": "9.0.0",
"bip32": "3.1.0",
"chalk": "^2.4.2",
Expand All @@ -77,7 +77,7 @@
"@types/prompts": "^1.1.1",
"@types/web3": "^1.0.18",
"jest": "^29.0.2",
"oclif": "^4.1.3",
"oclif": "^4.3.4",
"prettier": "1.19.1",
"ts-jest": "^29.0.0",
"ts-node": "^10.9.1",
Expand Down
2 changes: 1 addition & 1 deletion packages/cli/src/commands/validator/status.ts
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ export default class ValidatorStatus extends BaseCommand {
const bar = ux.progress({
format: 'counting block signatures [{bar}] {percentage}% | ETA: {eta}s | {value}/{total}',
})
bar.start(end - start)
bar.start(end, start)
const countsBySigner = new Map()
const incrementSignatureCounts = async (blockNumber: number) => {
if ((blockNumber - start) % 10 === 0 || blockNumber === end) {
Expand Down
Loading

0 comments on commit 38b14ab

Please sign in to comment.