fix: resolve error in quorum field name (_quorom to _quorum)
#1212
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
What changed? Why?
Fixed a critical typo: changed the field name
_quorom
to_quorum
to accurately reflect the term"quorum"
and ensure proper functionality in the system.Why this fix is necessary:
Correct code behavior: The incorrect spelling of this variable could lead to failures or improper functionality in the smart contract if the system expects exact field names.
Readability and maintainability:
"Quorum"
is a widely recognized term describing the minimum number of participants required for decision-making. Misspelling it may cause confusion for developers and users.This fix is essential to prevent potential errors in the smart contract's operation and to improve code clarity.
Notes to reviewers
How has it been tested?
Manually tested by creating issues with the updated
_quorum
field and verifying the expected behavior in contract interactions.