-
Notifications
You must be signed in to change notification settings - Fork 4.4k
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
validator: Move skip_poh_verify
into the deprecated list
#30885
validator: Move skip_poh_verify
into the deprecated list
#30885
Conversation
Thanks for jumping on this so quick. As for the help message of the now deprecated arg, you can leave it as is. Instead, add it to this list: Line 1913 in 24be850
which will get iterated through and spit out uniform messages about deprecated args: Lines 1718 to 1727 in 24be850
which means you can also drop this: Lines 1194 to 1196 in 24be850
|
I did a quick search, based on the Done. Seems like Should I send a PR to add it? |
No problem!
Yeah, good catch. Given that you're not the first person to miss this, might be worth a quick look to try to combine the two lists down to a single point. Don't have a great idea at the moment, but given that they're single use at startup, I think we can live with something that isn't the most elegant if it better helps us (engineers) to get both items updated (or single source somehow) Also, code looks good to go, but CI is failing ... looks like you need a rebase on top of: #30897 |
Follow-up for commit 809041b Author: Illia Bobyr <[email protected]> Date: Wed Mar 22 11:03:30 2023 -0700 poh_verify => run_verification: Rename to be more accurate (#30811) `poh_verify` actually disables transaction signature, tick count and built in program argument verifications as well. It is somewhat confusing to call it `poh_verify`.
Follow-up for