This repository has been archived by the owner on Jun 9, 2024. It is now read-only.
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.
protecccc validators bls #1473
protecccc validators bls #1473
Changes from 11 commits
e98d8b8
fdfada9
7a0f5e9
a6378e0
aed60b2
56e7390
50bc4dc
0377806
9c10313
4751e4e
1f5b812
c67c253
46fa37a
60a34da
d4cd9a9
2100f45
File filter
Filter by extension
Conversations
Jump to
There are no files selected for viewing
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.
The addition of
ValidatorJSONRPCEndpoint
,IsValidator
, andForceForwardReCheckTxs
fields to theConfig
struct aligns with the PR's objectives to enhance validator configurations. However, consider adding comments to describe the purpose and expected values for these new fields, especiallyValidatorJSONRPCEndpoint
andForceForwardReCheckTxs
, to improve code maintainability and clarity for future developers.While the new fields
ValidatorJSONRPCEndpoint
,IsValidator
, andForceForwardReCheckTxs
are crucial for enhancing validator configurations, it's important to ensure that their usage does not introduce security vulnerabilities (e.g., unvalidated input forValidatorJSONRPCEndpoint
could lead to SSRF attacks) or performance issues (e.g., excessive rechecking of transactions). Conduct thorough testing and validation to mitigate these risks.