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.
This PR:
polkadot-v1.9.0
release.polkadot-v1.7.0
>polkadot-v1.9.0
.Some important features brought by the
polkadot-v1.9.0
upgrade which we can utilize:Add rate limiting for RPC server which can be utilized by the CLI
--rpc-rate-limit <calls per minute>
The rate-limiting is disabled by default.
Adds pallet-parameters that allows to have parameters for pallet configs that dynamically change at runtime. Allows to be permissioned on a per-key basis and is compatible with ORML macros.
poll
hook and new System callbacks paritytech/polkadot-sdk#1781Adds a mechanism to reclaim proof size weight.
Introduces a new
SignedExtension
that reclaims the differencebetween benchmarked proof size weight and actual consumed proof size weight.
Introduces a manual mechanism,
StorageWeightReclaimer
, to reclaim excess storage weight for situationsthat require manual weight management. The most prominent case is the
on_idle
hook.Adds the
storage_proof_size
host function to the PVF. Parachain nodes should add it to ensure compatibility.