-
Notifications
You must be signed in to change notification settings - Fork 19
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
Build cmd - Add options to disable automatic metadata-hash checks on votes and proposals included in the transaction. #1065
base: master
Are you sure you want to change the base?
Conversation
@@ -133,6 +133,8 @@ data TransactionBuildCmdArgs era = TransactionBuildCmdArgs | |||
, mUpdateProposalFile :: !(Maybe (Featured ShelleyToBabbageEra era (Maybe UpdateProposalFile))) | |||
, voteFiles :: ![(VoteFile In, Maybe CliVoteScriptRequirements)] | |||
, proposalFiles :: ![(ProposalFile In, Maybe CliProposalScriptRequirements)] | |||
, disableMetadataChecksOnProposals :: !Bool |
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.
Don't use Bool
s. It's not too bad here but boolean blindness is a thing: https://yveskalume.dev/boolean-blindness-dont-represent-state-with-boolean
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.
In particular for a check flag it can be confusing, having a type like:
data MetadataCheck =
CheckMetadata
| DontCheckMetadata
will be clearer
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.
Approving with the caveat that @Jimbo4350's point is addressed 👍
8dee69f
to
f1f1a2c
Compare
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 need to look again. Please clean up your commit message. "fix formatting" is not useful!
pMetadataChecksOnProposals = | ||
Opt.flag EnableMetadataCheck DisableMetadataCheck $ | ||
mconcat | ||
[ Opt.long "disable-metadata-checks-on-proposals" |
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.
Right so now we have a common prefix: disable-metadata-checks
Repeating this is going to add to our already verbose commands. I'll have another look tomorrow to suggest an alternative.
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.
Tried to favor clarity over shortness with the flag names. The shortest I can come up with without loosing clarity is:
--disable-vote-metadata-check
--disable-proposal-metadata-check
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.
What we are looking for is the following:
[--update-proposal-file FILEPATH [--disable-proposal-metadata-check]]
19d9c53
to
53773b5
Compare
…ild cmd. The build cmd automatically runs checks on the metadata hashes on proposals and votes included in the transaction. The new flags allow the user to disable such checks. Useful for testing purposes and for users that may want to avoid CLI reaching out to the internet. --disable-metadata-checks-on-proposals --disable-metadata-checks-on-votes
53773b5
to
2ec4618
Compare
Changelog
Context
#951 (comment)
How to trust this PR
The simplest way to test it is using a proposal with intentionally wrong metadata hash. The check is skipped and transaction is built.
whereas without the flag we get:
The same with votes:
Without the flag:
Checklist