mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-06-13 21:01:05 +00:00
WIP: CI: add spellcheck (#3421)
* CI: add spellcheck * revert me * CI: explicit command for spellchecker * spellcheck: edit misspells * CI: run spellcheck on diff * spellcheck: edits * spellcheck: edit misspells * spellcheck: add rules * spellcheck: mv configs * spellcheck: more edits * spellcheck: chore * spellcheck: one more thing * spellcheck: and another one * spellcheck: seems like it doesn't get to an end * spellcheck: new words after rebase * spellcheck: new words appearing out of nowhere * chore * review edits * more review edits * more edits * wonky behavior * wonky behavior 2 * wonky behavior 3 * change git behavior * spellcheck: another bunch of new edits * spellcheck: new words are koming out of nowhere * CI: finding the master * CI: fetching master implicitly * CI: undebug * new errors * a bunch of new edits * and some more * Update node/core/approval-voting/src/approval_db/v1/mod.rs Co-authored-by: Andronik Ordian <write@reusable.software> * Update xcm/xcm-executor/src/assets.rs Co-authored-by: Andronik Ordian <write@reusable.software> * Apply suggestions from code review Co-authored-by: Andronik Ordian <write@reusable.software> * Suggestions from the code review * CI: scan only changed files Co-authored-by: Andronik Ordian <write@reusable.software>
This commit is contained in:
@@ -81,11 +81,11 @@ impl sp_std::fmt::Debug for CandidateHash {
|
||||
pub type Nonce = u32;
|
||||
|
||||
/// The balance of an account.
|
||||
/// 128-bits (or 38 significant decimal figures) will allow for 10m currency (10^7) at a resolution
|
||||
/// to all for one second's worth of an annualised 50% reward be paid to a unit holder (10^11 unit
|
||||
/// denomination), or 10^18 total atomic units, to grow at 50%/year for 51 years (10^9 multiplier)
|
||||
/// for an eventual total of 10^27 units (27 significant decimal figures).
|
||||
/// We round denomination to 10^12 (12 sdf), and leave the other redundancy at the upper end so
|
||||
/// 128-bits (or 38 significant decimal figures) will allow for 10 m currency (`10^7`) at a resolution
|
||||
/// to all for one second's worth of an annualised 50% reward be paid to a unit holder (`10^11` unit
|
||||
/// denomination), or `10^18` total atomic units, to grow at 50%/year for 51 years (`10^9` multiplier)
|
||||
/// for an eventual total of `10^27` units (27 significant decimal figures).
|
||||
/// We round denomination to `10^12` (12 SDF), and leave the other redundancy at the upper end so
|
||||
/// that 32 bits may be multiplied with a balance in 128 bits without worrying about overflow.
|
||||
pub type Balance = u128;
|
||||
|
||||
@@ -99,7 +99,7 @@ pub type BlockId = generic::BlockId<Block>;
|
||||
/// Opaque, encoded, unchecked extrinsic.
|
||||
pub use sp_runtime::OpaqueExtrinsic as UncheckedExtrinsic;
|
||||
|
||||
/// The information that goes alongside a transfer_into_parachain operation. Entirely opaque, it
|
||||
/// The information that goes alongside a `transfer_into_parachain` operation. Entirely opaque, it
|
||||
/// will generally be used for identifying the reason for the transfer. Typically it will hold the
|
||||
/// destination account to which the transfer should be credited. If still more information is
|
||||
/// needed, then this should be a hash with the pre-image presented via an off-chain mechanism on
|
||||
@@ -144,7 +144,7 @@ pub struct OutboundHrmpMessage<Id> {
|
||||
pub data: sp_std::vec::Vec<u8>,
|
||||
}
|
||||
|
||||
/// V1 primitives.
|
||||
/// `V1` primitives.
|
||||
pub mod v1 {
|
||||
pub use super::*;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user