mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-06-13 05:51:02 +00:00
docs: fix typos (#2193)
This commit is contained in:
@@ -45,7 +45,7 @@ board](https://github.com/paritytech/substrate/discussions).
|
||||
* Allow validators to block and kick their nominator set. (#7930)
|
||||
* Decouple Staking and Election - Part1: Support traits (#7908)
|
||||
* Introduces account existence providers reference counting (#7363)
|
||||
* contracts: Cap the surcharge reward by the amount of rent that way payed by a contract (#7870)
|
||||
* contracts: Cap the surcharge reward by the amount of rent that way paid by a contract (#7870)
|
||||
* Use checked math when calculating storage size (#7885)
|
||||
* Fix clear prefix check to avoid erasing child trie roots. (#7848)
|
||||
* contracts: Collect rent for the first block during deployment (#7847)
|
||||
|
||||
@@ -113,7 +113,7 @@ And update the overall definition for weights on frame and a few related types a
|
||||
```diff=
|
||||
|
||||
-const AVERAGE_ON_INITIALIZE_WEIGHT: Perbill = Perbill::from_percent(10);
|
||||
+/// We assume that ~10% of the block weight is consumed by `on_initalize` handlers.
|
||||
+/// We assume that ~10% of the block weight is consumed by `on_initialize` handlers.
|
||||
+/// This is used to limit the maximal weight of a single extrinsic.
|
||||
+const AVERAGE_ON_INITIALIZE_RATIO: Perbill = Perbill::from_percent(10);
|
||||
+/// We allow `Normal` extrinsics to fill up the block up to 75%, the rest can be used
|
||||
|
||||
Reference in New Issue
Block a user