mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-06-20 22:11:01 +00:00
docs: fix typos (#2193)
This commit is contained in:
@@ -74,7 +74,7 @@ The output above shows a **secret phrase** (also called **mnemonic phrase**) and
|
||||
**Private Key**). Those 2 secrets are the pieces of information you MUST keep safe and secret. All the other information
|
||||
below can be derived from those secrets.
|
||||
|
||||
The output above also show the **public key** and the **Account ID**. Those are the independant from the network where
|
||||
The output above also show the **public key** and the **Account ID**. Those are the independent from the network where
|
||||
you will use the key.
|
||||
|
||||
The **SS58 address** (or **Public Address**) of a new account is a reprensentation of the public keys of an account for
|
||||
@@ -163,7 +163,7 @@ This time, we properly recovered `5He5pZpc7AJ8evPuab37vJF6KkFDqq9uDq2WXh877Qw6ia
|
||||
|
||||
### Inspecting a key
|
||||
|
||||
If you have *some data* about a key, `subkey inpsect` will help you discover more information about it.
|
||||
If you have *some data* about a key, `subkey inspect` will help you discover more information about it.
|
||||
|
||||
If you have **secrets** that you would like to verify for instance, you can use:
|
||||
|
||||
|
||||
@@ -104,7 +104,7 @@ shortcuts:
|
||||
## Mental Model
|
||||
|
||||
BEEFY should be considered as an extra voting round done by GRANDPA validators for the current
|
||||
best finalized block. Similarily to how GRANDPA is lagging behind best produced (non-finalized)
|
||||
best finalized block. Similarly to how GRANDPA is lagging behind best produced (non-finalized)
|
||||
block, BEEFY is going to lag behind best GRANDPA (finalized) block.
|
||||
|
||||
```
|
||||
@@ -302,7 +302,7 @@ periodically on the global topic. Let's now dive into description of the message
|
||||
|
||||
## Misbehavior
|
||||
|
||||
Similarily to other PoS protocols, BEEFY considers casting two different votes in the same round a
|
||||
Similarly to other PoS protocols, BEEFY considers casting two different votes in the same round a
|
||||
misbehavior. I.e. for a particular `round_number`, the validator produces signatures for 2 different
|
||||
`Commitment`s and broadcasts them. This is called **equivocation**.
|
||||
|
||||
|
||||
@@ -227,7 +227,7 @@ transactions that are prepared for block inclusion. Propagation is best
|
||||
effort, especially for block authors and is not directly incentivised.
|
||||
However the networking protocol might penalise peers that send invalid or
|
||||
useless transactions so we should be nice to others. Also see below a proposal
|
||||
to instead of gossiping everyting have other peers request transactions they
|
||||
to instead of gossiping everything have other peers request transactions they
|
||||
are interested in.
|
||||
|
||||
Since the pool is expected to store more transactions than what can fit
|
||||
|
||||
@@ -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
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
# Root Testing Pallet
|
||||
|
||||
Pallet that contains extrinsics that can be usefull in testing.
|
||||
Pallet that contains extrinsics that can be useful in testing.
|
||||
|
||||
NOTE: This pallet should only be used for testing purposes and should not be used in production runtimes!
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
Handling of blobs, typicaly validation code, which may be compressed.
|
||||
Handling of blobs, typically validation code, which may be compressed.
|
||||
|
||||
License: Apache-2.0
|
||||
|
||||
@@ -20,5 +20,5 @@ comparing keys, not the values.
|
||||
`renamed_authorities`.
|
||||
|
||||
|
||||
`default_genesis_config_invalid.json` is just an imcomplete copy of
|
||||
`default_genesis_config_invalid.json` is just an incomplete copy of
|
||||
`default_genesis_config.json` with `babe::authorities` field removed.
|
||||
|
||||
Reference in New Issue
Block a user