-
Notifications
You must be signed in to change notification settings - Fork 1.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Move verifreg shed utils to CLI #6135
Conversation
cmd/lotus-shed/verifreg.go
Outdated
verifRegVerifyClientCmd, | ||
verifRegListVerifiersCmd, | ||
verifRegListClientsCmd, | ||
verifRegCheckClientCmd, | ||
verifRegCheckVerifierCmd, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This will break existing scripts, maybe we should keep/alias those commands here as hidden/with a deprecated warning?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Ack
ea061b1
to
71848a8
Compare
cmd/lotus-shed/verifreg.go
Outdated
Name: "verifreg", | ||
Usage: "Interact with the verified registry actor", | ||
Flags: []cli.Flag{}, | ||
Hidden: true, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Note this also hides our "use root key to make a verifier" util, but that should be fine...could alternatively hide all the subcommands except that one.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'd do this per-command (and print the 'this is depcecated' warnings)
run cli docs gen? |
donesies, thanks! |
Addresses #5151 , though v5 actors integration is needed to close it.