-
Notifications
You must be signed in to change notification settings - Fork 14
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Polkadot v0.9.43 #295
Merged
Merged
Polkadot v0.9.43 #295
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
* Swap base58 with bs58 * Removed unused clone * std flag
* proc-macro: check for non-args runtime calls added * Update primitives/api/proc-macro/src/impl_runtime_apis.rs Co-authored-by: Bastian Köcher <git@kchr.de> --------- Co-authored-by: Bastian Köcher <git@kchr.de> Co-authored-by: parity-processbot <>
This reverts commit 56d8cbf.
That is to avoid hitting the pallet limit that emits a cryptic error. More detail could be found here: https://substrate.stackexchange.com/questions/7212 . Co-authored-by: parity-processbot <>
* Generic testing keystore internals * Generic local keystore internals * Restore deleted comment
* Adjust application crypto docs * Blanket implementation for 'RuntimeAppPublic' trait * Blanket implementation for 'BoundToRuntimeAppPublic' for 'RuntimeAppPublic' * Relax type bounds * Docs fix * restore MaybeHash * Commit suggestion Co-authored-by: Anton <anton.kalyaev@gmail.com> --------- Co-authored-by: Anton <anton.kalyaev@gmail.com>
* Attempt to relieve pressure on `mpsc_network_worker` `SyncingEngine` interacting with `NetworkWorker` can put a lot of strain on the channel if the number of inbound connections is high. This is because `SyncingEngine` is notified of each inbound substream which it then can either accept or reject and this causes a lot of message exchange on the already busy channel. Use a direct channel pair between `Protocol` and `SyncingEngine` to exchange notification events. It is a temporary change to alleviate the problems caused by syncing being an independent protocol and the fix will be removed once `NotificationService` is implemented. * Apply review comments * fixes * trigger ci * Fix tests Verify that both peers have a connection now that the validation goes through `SyncingEngine`. Depending on how the tasks are scheduled, one of them might not have the peer registered in `SyncingEngine` at which point the test won't make any progress because block announcement received from an unknown peer is discarded. Move polling of `ChainSync` at the end of the function so that if a block announcement causes a block request to be sent, that can be sent in the same call to `SyncingEngine::poll()`. --------- Co-authored-by: parity-processbot <>
* [Enhancement] Throw an error when there are too many pallets * fix ui test * fix PR comments * Update frame/support/procedural/src/construct_runtime/mod.rs Co-authored-by: Bastian Köcher <git@kchr.de> * Update frame/support/procedural/src/construct_runtime/mod.rs Co-authored-by: Bastian Köcher <git@kchr.de> * ".git/.scripts/commands/fmt/fmt.sh" --------- Co-authored-by: Bastian Köcher <git@kchr.de> Co-authored-by: command-bot <>
* sc-consensus-beefy: add justifications to gossip protocol * sc-consensus-beefy: voter gossips finality proofs * sc-consensus-beefy: add finality proof gossip test * sc-consensus-beefy: always gossip finality proof Gossip finality proof in _both_ cases of reaching finality threshold through votes: 1. threshold reached through self vote, 2. threshold reached through incoming vote. * address comments
Co-authored-by: parity-processbot <>
…ntract termination (#13702) * [Contracts review] Overflowing bounded `DeletionQueue` allows DoS against contract termination * wip * wip * wip * wip * wip * fix doc * wip * PR review * unbreak tests * fixes * update budget computation * PR comment: use BlockWeights::get().max_block * PR comment: Update queue_trie_for_deletion signature * PR comment: update deletion budget docstring * PR comment: impl Default with derive(DefaultNoBound) * PR comment: Remove DeletedContract * PR comment Add ring_buffer test * remove missed comment * misc comments * contracts: add sr25519_recover * Revert "contracts: add sr25519_recover" This reverts commit d4600e00934b90e5882cf5288f36f98911b51722. * ".git/.scripts/commands/bench/bench.sh" pallet dev pallet_contracts * PR comments update print_schedule * Update frame/contracts/src/benchmarking/mod.rs * Update frame/contracts/src/storage.rs * Update frame/contracts/src/storage.rs * rm temporary fixes * fix extra ; * Update frame/contracts/src/storage.rs Co-authored-by: juangirini <juangirini@gmail.com> * Update frame/contracts/src/storage.rs Co-authored-by: Alexander Theißen <alex.theissen@me.com> * Update frame/contracts/src/lib.rs Co-authored-by: Alexander Theißen <alex.theissen@me.com> * Update frame/contracts/src/lib.rs Co-authored-by: Alexander Theißen <alex.theissen@me.com> * Support stable rust for compiling the runtime (#13580) * Support stable rust for compiling the runtime This pull request brings support for compiling the runtime with stable Rust. This requires at least rust 1.68.0 to work on stable. The code is written in a way that it is backwards compatible and should automatically work when someone compiles with 1.68.0+ stable. * We always support nightlies! * 🤦 * Sort by version * Review feedback * Review feedback * Fix version parsing * Apply suggestions from code review Co-authored-by: Koute <koute@users.noreply.github.com> --------- Co-authored-by: Koute <koute@users.noreply.github.com> * github PR commit fixes * Revert "Support stable rust for compiling the runtime (#13580)" This reverts commit 0b985aa5ad114a42003519b712d25a6acc40b0ad. * Restore DeletionQueueMap * fix namings * PR comment * move comments * Update frame/contracts/src/storage.rs * Update frame/contracts/src/storage.rs * fixes --------- Co-authored-by: command-bot <> Co-authored-by: juangirini <juangirini@gmail.com> Co-authored-by: Alexander Theißen <alex.theissen@me.com> Co-authored-by: Bastian Köcher <git@kchr.de> Co-authored-by: Koute <koute@users.noreply.github.com>
…of these (#13764) * Extract most aura logic out to standalone module, make use of these * Update client/consensus/aura/src/standalone.rs improve docs Co-authored-by: Bastian Köcher <git@kchr.de> * add slot_duration_at * ".git/.scripts/commands/fmt/fmt.sh" --------- Co-authored-by: Bastian Köcher <git@kchr.de> Co-authored-by: parity-processbot <>
* contracts: make test work with debugger * fix path * PR review * Add comment * space * Update frame/contracts/src/tests.rs * lint * spelling
* max instead of min * Remove debug stuff * remove debug code * warn log on no provider ref * format string for log --------- Co-authored-by: muharem <ismailov.m.h@gmail.com>
* Changes in RPC docs. * ".git/.scripts/commands/fmt/fmt.sh" --------- Co-authored-by: command-bot <>
This fixes the compilation on master for the node template that was not pulling the latest release as part of its build.
Co-authored-by: parity-processbot <>
Co-authored-by: parity-processbot <>
* refactor: inconsistent BalanceConversion fn * Revert "refactor: inconsistent BalanceConversion fn" This reverts commit 1177877631a11b64df6f019b5390a8a7018e3a3f. * refactor: rename BalanceConversion trait * feat: add ConversionFromAssetBalance
This removes the deprecated batch verification. This was actually never really activated. Nevertheless, we need to keep the host functions around to support old runtimes which may import these host functions. However, we do not give access to these functions anymore. This means that any new runtime can not call them anymore. The host function implementations we keep will not do batch verification and will instead fall back to the always existing option of directly verifying the passed signature. `finish_batch_verification` will return the combined result of all the batch verify calls. This removes the `TaskExecutorExt` which only existed to support the batch verification. So, any code that used this extension can just remove the registration of them. It also removes `SignatureBatching` that was used by `frame-executive` to control the batch verification. However, there wasn't any `Verify` implementation that called the batch verification functions.
* Use proc-macro-warning crate Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io> * Fixup Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io> * Fix pallet_ui tests Also renamed some of the odd-named ones. Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io> * Update dep Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io> * Ignore hardcoded weight warning To be fixed in https://github.com/paritytech/substrate/issues/13813 Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io> * Fix test pallet Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io> * Fix more tests Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io> --------- Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io> Co-authored-by: parity-processbot <>
…es to collections and items in the Uniques pallet in order to follow the commonly accepted NFTs terminology.) (#13322) * Update documentation for uniques The documentation was outdated after merge of #11389 Using the widely spread term collections and item instead of the previous class and instance. * Update README.md --------- Co-authored-by: Jegor Sidorenko <5252494+jsidorenko@users.noreply.github.com> Co-authored-by: Jegor Sidorenko <jegor@parity.io>
* Implement #[pallet::hold_reason] * Appease clippy * cargo fmt * Update test expectations * Update test expectations * Support composite_enum attribute instead * Update test expectations * Change hold_reason to composite_enum * Add UI test for unsupported identifier when using composite_enum * Fix comment * Add documentation for pallet::composable_enum * More docs * cargo fmt
* Expose WASM extensions in executor semantics * Fix benches * Remove redundant extensions
* Remove deprecated pallet calls Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io> * Deprecate old weight Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io> * Update Runtime API Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io> * Fix tests Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io> * Delete shitty code Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io> * Fix doctest Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io> * Update frame/alliance/src/lib.rs Co-authored-by: Koute <koute@users.noreply.github.com> * Add doc Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io> * contracts: Use u64 as old weight type Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io> * Update frame/contracts/src/lib.rs Co-authored-by: Alexander Theißen <alex.theissen@me.com> --------- Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io> Co-authored-by: Koute <koute@users.noreply.github.com> Co-authored-by: Alexander Theißen <alex.theissen@me.com> Co-authored-by: parity-processbot <>
First, we increase the size to 10MiB for the local cache. Second, we give the node cache a bigger max size than the value cache, see the changed comment on why. In general this should ensure that we are able to cache the `:code` and not directly throw it out of the cache because it is too big (which currently happens when the size of the runtime > 2MiB). In the future this should be improved to ensure that certain values are not removed from the cache at all, like `:code`.
* unneeded mut * remove needless borrows
* refactor: use builder api for all executors * improve a lot * remove unused args * cleanup deps * fix inconsistency about heap alloc * add `heap_pages` back to try-runtime * fix * chore: reduce duplicated code for sc-service-test * cleanup code * fmt * improve test executor * improve * use #[deprecated] * set runtime_cache_size: 4 * wip * fix and improve * remove sc-executor-wasmi deps * clean up bench and tests * delete "client/executor/wasmi" * cleanup * refactor builder * fix * fix bench * fix tests * fix warnings * fix warnings * fix * fix * remove wasmi and fix tests * unused imports * improve by suggestions * Update client/cli/src/arg_enums.rs --------- Co-authored-by: Bastian Köcher <git@kchr.de> Co-authored-by: parity-processbot <>
* fix offences pre_upgrade hook * identify source of ensure! failures * stop migration hooks breaking post migration * add childbounties storage version * init child bounties version to zero * Update frame/child-bounties/src/lib.rs Co-authored-by: Bastian Köcher <git@kchr.de> * remove redundant preupgrade version checks * update test * fix nom pools v3 migration * kick ci * kick ci --------- Co-authored-by: Bastian Köcher <git@kchr.de>
* wasm: Update from v6.0.2 to v8.0.1 Signed-off-by: Alexandru Vasile <alexandru.vasile@parity.io> * Fix rustix version Signed-off-by: Alexandru Vasile <alexandru.vasile@parity.io> --------- Signed-off-by: Alexandru Vasile <alexandru.vasile@parity.io>
BEEFY consensus can be restarted by resetting "genesisBlock" in pallet-beefy, but we don't want to also reset authority set IDs so that they are uniquely identified across the entire chain history regardless of how many times BEEFY consensus has been reset/restarted. This is why the client now also accepts initial authority_set_id != 0. BEEFY client now detects pallet-beefy reset/reinit and errors-out and asks for a restart. BEEFY client persisted state should be discarded on client restarts following pallet-beefy reset/reinit. End result is BEEFY client/voter can now completely reinitialize using "new" on-chain info following pallet-beefy reset/reinit, discarding old state. Fixes #14203 Fixes #14204 Signed-off-by: acatangiu <adrian@parity.io>
The where bound for the `create_metadata` function wasn't correct. This pr fixes this by using the where bound declared at the type declaration augmented with the manual where bound.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Link for reviewing just the changes made to fix stuff (other than resolving conflicts): https://github.com/liberland/liberland_substrate/pull/295/files/2b3d0d8cbc2e86b4428be7963ed787e00b7737ac..3e0e4344b71da8aa1e3e248ca2085d12b5d7a38b
TODO:
MessageQueue
paritytech/substrate#13424 - not applicable, we don't use message queueTrack updates
All
A0-please_review
,C1-low
,D3-trivial 🧸
,B1-note_worthy
,T1-runtime
A0-please_review
,B0-silent
,C1-low
,D5-nicetohaveaudit ⚠️
IntegrityTest
implementation should be feature gated -A2-insubstantial
,B0-silent
,C1-low
,D3-trivial 🧸
A2-insubstantial
,B0-silent
,C1-low
A0-please_review
,C1-low
,D3-trivial 🧸
,B1-note_worthy
,T1-runtime
A0-please_review
,B0-silent
,C1-low
,D2-notlive 💤
A0-please_review
,B0-silent
,C1-low
A0-please_review
,C1-low
,B1-note_worthy
,E1-database_migration
,T0-node
ci-linux
and use Rust 1.66.1 -A0-please_review
,B0-silent
,C1-low
A0-please_review
,B0-silent
,C1-low
,D2-notlive 💤
A0-please_review
,B0-silent
,C1-low
,D3-trivial 🧸
A0-please_review
,B0-silent
,C1-low
A2-insubstantial
,B0-silent
,C1-low
,D3-trivial 🧸
A0-please_review
,B0-silent
,C1-low
,D3-trivial 🧸
A2-insubstantial
,B0-silent
,C1-low
,D2-notlive 💤
A0-please_review
,B0-silent
,C1-low
,D3-trivial 🧸
/wss
addresses -A0-please_review
,C1-low
,D3-trivial 🧸
,B1-note_worthy
,T0-node
A0-please_review
,B0-silent
,C1-low
,D2-notlive 💤
next_slot
method -A0-please_review
,B0-silent
,C1-low
A0-please_review
,B0-silent
,C1-low
,D3-trivial 🧸
A0-please_review
,B0-silent
,C1-low
,D3-trivial 🧸
storage_size
/state_getStorageSize
RPC call -A0-please_review
,I8-footprint
,C1-low
,D3-trivial 🧸
,B1-note_worthy
,T0-node
,T2-API
A0-please_review
,B0-silent
,C1-low
,D9-needsaudit 👮
A0-please_review
,B0-silent
,C1-low
,D3-trivial 🧸
A0-please_review
,B0-silent
,C1-low
,D3-trivial 🧸
UnknownBlock
error viaApiError
-A0-please_review
,B0-silent
,C1-low
,D3-trivial 🧸
A0-please_review
,B0-silent
,C1-low
,D3-trivial 🧸
A2-insubstantial
,B0-silent
,C1-low
,D3-trivial 🧸
A0-please_review
,B0-silent
,C1-low
,D3-trivial 🧸
A0-please_review
,B0-silent
,C1-low
,D3-trivial 🧸
validate_block
output -A0-please_review
,B0-silent
,C1-low
,D3-trivial 🧸
A0-please_review
,C1-low
,D3-trivial 🧸
,B1-note_worthy
,T0-node
A0-please_review
,B0-silent
,C1-low
,D3-trivial 🧸
A2-insubstantial
,A3-in_progress
,B0-silent
,C1-low
,D2-notlive 💤
A0-please_review
,B0-silent
,C1-low
,D3-trivial 🧸
A0-please_review
,B0-silent
,C1-low
,D3-trivial 🧸
A2-insubstantial
,B0-silent
,C1-low
,D3-trivial 🧸
A0-please_review
,C1-low
,D3-trivial 🧸
,B1-note_worthy
,T2-API
*-private-ipv4
to*-private-ip
CLI args -A0-please_review
,C1-low
,D3-trivial 🧸
,B1-note_worthy
,T0-node
A0-please_review
,I7-refactor
,B0-silent
,C1-low
,D3-trivial 🧸
A0-please_review
,C3-medium
,D1-audited 👍
,B1-note_worthy
,T1-runtime
A0-please_review
,B0-silent
,C1-low
,D3-trivial 🧸
A0-please_review
,B0-silent
,C1-low
,D3-trivial 🧸
A3-in_progress
,B0-silent
,C1-low
,D3-trivial 🧸
A0-please_review
,B0-silent
,C1-low
,D3-trivial 🧸
A0-please_review
,B0-silent
,C1-low
,D3-trivial 🧸
A0-please_review
,B0-silent
,C1-low
,D3-trivial 🧸
A0-please_review
,B0-silent
,C1-low
total_supply
toamount
-A2-insubstantial
,B0-silent
,C1-low
,D3-trivial 🧸
,D2-breaksapi
A0-please_review
,I3-bug
,B0-silent
,C1-low
,D3-trivial 🧸
A0-please_review
,C1-low
,D1-audited 👍
,B1-note_worthy
,T1-runtime
A0-please_review
,B0-silent
,C1-low
,D5-nicetohaveaudit ⚠️
check-each-crate
in python -A0-please_review
,B0-silent
,C1-low
,D3-trivial 🧸
A0-please_review
,B0-silent
,C1-low
,D3-trivial 🧸
A0-please_review
,B0-silent
,C1-low
,D5-nicetohaveaudit ⚠️
A0-please_review
,I3-bug
,I7-refactor
,I9-optimisation
,I8-footprint
,B0-silent
,C1-low
,D3-trivial 🧸
A0-please_review
,C1-low
,D3-trivial 🧸
,B1-note_worthy
,T0-node
A0-please_review
,B0-silent
,C1-low
,D3-trivial 🧸
A0-please_review
,C1-low
,D3-trivial 🧸
,B1-note_worthy
,T2-API
PerDispatchClass
-A0-please_review
,C1-low
,D3-trivial 🧸
,B1-note_worthy
,T1-runtime
A0-please_review
,B0-silent
,C1-low
,D3-trivial 🧸
C1-low
,D5-nicetohaveaudit ⚠️
,B1-note_worthy
,T1-runtime
A0-please_review
,B0-silent
,C1-low
,D3-trivial 🧸
frame_support::benchmarking
toframe_benchmarking::v2
-A0-please_review
,C1-low
,D3-trivial 🧸
,B1-note_worthy
,T1-runtime
A0-please_review
,B0-silent
,C1-low
,D3-trivial 🧸
A2-insubstantial
,B0-silent
,C1-low
,D3-trivial 🧸
A2-insubstantial
,B0-silent
,C1-low
,D3-trivial 🧸
A0-please_review
,B0-silent
,C1-low
,D3-trivial 🧸
A0-please_review
,B0-silent
,C1-low
,D3-trivial 🧸
A0-please_review
,B0-silent
,C1-low
,D3-trivial 🧸
uncles
related code -A0-please_review
,C1-low
,D3-trivial 🧸
,B1-note_worthy
,T1-runtime
A2-insubstantial
,B0-silent
,C1-low
,D3-trivial 🧸
A0-please_review
,B0-silent
,C1-low
,D3-trivial 🧸
A3-in_progress
,C1-low
,D3-trivial 🧸
,B1-note_worthy
,T2-API
A0-please_review
,B0-silent
,C1-low
,D3-trivial 🧸
contains_prefix
for StorageDoubleMap and StorageNMap -A0-please_review
,C1-low
,D5-nicetohaveaudit ⚠️
,B1-note_worthy
,T2-API
A0-please_review
,B0-silent
,C1-low
,D3-trivial 🧸
AssetTxFeePaid
-A0-please_review
,C1-low
,D3-trivial 🧸
A0-please_review
,B0-silent
,C1-low
,D2-notlive 💤
TypeInfo
for describing runtime types -A0-please_review
,B0-silent
,C1-low
,D3-trivial 🧸
EnsureRankedMember
must add ranked members -A0-please_review
,B0-silent
,C1-low
,D3-trivial 🧸
A0-please_review
,B0-silent
,C1-low
,D3-trivial 🧸
A0-please_review
,B0-silent
,C1-low
,D2-notlive 💤
A0-please_review
,C1-low
,D3-trivial 🧸
A0-please_review
,B0-silent
,C1-low
,D3-trivial 🧸
A0-please_review
,B0-silent
,C1-low
,D3-trivial 🧸
A0-please_review
,C1-low
,D3-trivial 🧸
ephemeral_addresses
-A0-please_review
,B0-silent
,C1-low
,D3-trivial 🧸
A0-please_review
,B0-silent
,C1-low
,D3-trivial 🧸
A0-please_review
,B0-silent
,C1-low
,D2-notlive 💤
wasmtime
to 5.0.0 (and a few other deps) -A0-please_review
,B0-silent
,C1-low
,D3-trivial 🧸
A2-insubstantial
,B0-silent
,C1-low
,D3-trivial 🧸
pallet-random-collective-flip
to Insecure... -A0-please_review
,C1-low
,D3-trivial 🧸
zombienet
: warp-sync tests for validators -A0-please_review
,B0-silent
,C1-low
strum
(fixpolkadot
CI) -B0-silent
,D3-trivial 🧸
A0-please_review
,B0-silent
,C1-low
A0-please_review
,C3-medium
,D1-audited 👍
Notifications
protocol -A0-please_review
,B0-silent
,C1-low
,D3-trivial 🧸
A0-please_review
,C1-low
,D1-audited 👍
A0-please_review
,B0-silent
,C1-low
,D3-trivial 🧸
A0-please_review
,B0-silent
,C1-low
,D5-nicetohaveaudit ⚠️
A0-please_review
,B0-silent
,C1-low
,D3-trivial 🧸
A0-please_review
,B0-silent
,C1-low
A0-please_review
,I3-bug
,B0-silent
,C1-low
,D3-trivial 🧸
C1-low
,D3-trivial 🧸
A0-please_review
,B0-silent
,C1-low
,D3-trivial 🧸
A0-please_review
,B0-silent
,C1-low
,D3-trivial 🧸
A0-please_review
,B0-silent
A0-please_review
,B0-silent
,C1-low
,D3-trivial 🧸
A0-please_review
,B0-silent
,C1-low
PruningMode::ArchiveCanonical
-A0-please_review
,C1-low
,D3-trivial 🧸
,B1-note_worthy
,T0-node
A0-please_review
,B0-silent
,C1-low
,D3-trivial 🧸
A0-please_review
,C1-low
,D3-trivial 🧸
,B1-note_worthy
,T1-runtime
A0-please_review
,C1-low
,D1-audited 👍
,B1-note_worthy
,T1-runtime
A0-please_review
,B0-silent
,C1-low
,D3-trivial 🧸
<weight></weight>
from docs comments -A0-please_review
,B0-silent
,C1-low
,D3-trivial 🧸
B0-silent
,C1-low
,D3-trivial 🧸
ValidAtTimestamp
error variant -A0-please_review
,C1-low
,D3-trivial 🧸
,B1-note_worthy
,T1-runtime
A0-please_review
,C1-low
,D3-trivial 🧸
,B1-note_worthy
,T0-node
debug_message
execution outcome invariant to node debug logging setting -A0-please_review
,B0-silent
,C1-low
,D1-audited 👍
B0-silent
,C1-low
,A1-needs_burnin
,D3-trivial 🧸
B0-silent
,C1-low
,D3-trivial 🧸
proof_size
from benchmarks -A0-please_review
,C1-low
,D1-audited 👍
,B1-note_worthy
,T1-runtime
A0-please_review
,B0-silent
,C1-low
A0-please_review
,B0-silent
,C1-low
dockerhub-description
image name -A2-insubstantial
,B0-silent
,C1-low
,D3-trivial 🧸
A0-please_review
,B0-silent
,C1-low
,D2-notlive 💤
A0-please_review
,C1-low
,D9-needsaudit 👮
,B1-note_worthy
,T1-runtime
A2-insubstantial
,B0-silent
,C1-low
,D3-trivial 🧸
BlockId
removal:CallApiAt::state_at
-B0-silent
,C1-low
,D3-trivial 🧸
BlockId
removal:Client::runtime_version_at
-B0-silent
,C1-low
,D3-trivial 🧸
A0-please_review
,B0-silent
,C1-low
,D2-notlive 💤
NotificationOutSubstream
was closed by the remote -A0-please_review
,B0-silent
,C1-low
,D3-trivial 🧸
A0-please_review
,B0-silent
,C1-low
,D5-nicetohaveaudit ⚠️
try-runtime::fast-forward
-A0-please_review
,C1-low
,D2-notlive 💤
,B1-note_worthy
,T1-runtime
NotificationOutSubstream
was closed by the remote" -A0-please_review
,B0-silent
,C1-low
,D3-trivial 🧸
A0-please_review
,B0-silent
,C1-low
,D3-trivial 🧸
NetworkWorker
-A0-please_review
,B0-silent
,C1-low
,D3-trivial 🧸
A0-please_review
,B0-silent
,C1-low
A0-please_review
,B0-silent
,C1-low
,D3-trivial 🧸
BlockId
removal:runtime-api
refactor -A3-in_progress
,C1-low
,D3-trivial 🧸
,B1-note_worthy
,T0-node
A0-please_review
,B0-silent
,C1-low
,D3-trivial 🧸
A0-please_review
,C1-low
,D3-trivial 🧸
,B1-note_worthy
,T1-runtime
A0-please_review
,B0-silent
,C1-low
,D3-trivial 🧸
defensive_assert!
macro -A0-please_review
,C1-low
,D3-trivial 🧸
,B1-note_worthy
,T1-runtime
BlockId
removal:BlockBuilderProvider::new_block_at
-B0-silent
,C1-low
,D3-trivial 🧸
A2-insubstantial
,B0-silent
,C1-low
,D3-trivial 🧸
A2-insubstantial
,I6-documentation
,B0-silent
,C1-low
,D3-trivial 🧸
A0-please_review
,C1-low
,D3-trivial 🧸
,B1-note_worthy
,T1-runtime
C1-low
,D3-trivial 🧸
,B1-note_worthy
,T1-runtime
A0-please_review
,I7-refactor
,I9-optimisation
,I8-footprint
,B0-silent
,C1-low
,D3-trivial 🧸
bond_extra
in nomination pools -A0-please_review
,C1-low
,D1-audited 👍
,B1-note_worthy
,T1-runtime
A0-please_review
,B0-silent
,C1-low
,D1-audited 👍
C1-low
,D3-trivial 🧸
,B1-note_worthy
,T1-runtime
wasmtime
to 6.0.0 -A0-please_review
,B0-silent
,C1-low
,D3-trivial 🧸
C1-low
,D1-audited 👍
,B1-note_worthy
,T1-runtime
substrate
docker image description to hub.docker.com. -A0-please_review
,B0-silent
,C1-low
,D3-trivial 🧸
A0-please_review
,C1-low
,D1-audited 👍
,B1-note_worthy
,T1-runtime
A0-please_review
,B0-silent
,C3-medium
,D3-trivial 🧸
A0-please_review
,C1-low
,D3-trivial 🧸
,B1-note_worthy
,T0-node
B0-silent
,C1-low
MessageQueue
-A0-please_review
,C1-low
,D1-audited 👍
,B1-note_worthy
,E0-runtime_migration
,T1-runtime
A0-please_review
,B0-silent
,C1-low
,D3-trivial 🧸
A0-please_review
,B0-silent
,C1-low
A0-please_review
,I7-refactor
,B0-silent
,C1-low
,D3-trivial 🧸
B0-silent
,C1-low
,D3-trivial 🧸
A0-please_review
,B0-silent
,C1-low
,D3-trivial 🧸
pallet-treasury
: Ensure we respectmax_amount
for spend across batch calls -A0-please_review
,C1-low
,D1-audited 👍
,B1-note_worthy
,T1-runtime
B0-silent
,C1-low
,D3-trivial 🧸
B0-silent
,C1-low
,D3-trivial 🧸
in-peers
/out-peers
-A0-please_review
,C1-low
,D3-trivial 🧸
,B1-note_worthy
,T0-node
A0-please_review
,B0-silent
,C1-low
,D3-trivial 🧸
B0-silent
,C1-low
,D3-trivial 🧸
B0-silent
,C1-low
,D3-trivial 🧸
A0-please_review
,I9-optimisation
,B0-silent
,C1-low
,D3-trivial 🧸
A0-please_review
,B0-silent
,C1-low
,D3-trivial 🧸
A0-please_review
,B0-silent
,C1-low
A0-please_review
,B0-silent
,C1-low
,D3-trivial 🧸
ChargedAmount
-A0-please_review
,C1-low
,D3-trivial 🧸
,B1-note_worthy
,T1-runtime
A0-please_review
,B0-silent
,C1-low
A0-please_review
,C1-low
,D5-nicetohaveaudit ⚠️
,B1-note_worthy
,T1-runtime
A0-please_review
,B0-silent
,C1-low
,D3-trivial 🧸
A0-please_review
,B0-silent
,C1-low
,D3-trivial 🧸
A0-please_review
,C1-low
,D3-trivial 🧸
,B1-note_worthy
,T1-runtime
Weight::from_{ref_time, proof_size}
-A0-please_review
,C1-low
,D3-trivial 🧸
,B1-note_worthy
,T1-runtime
A0-please_review
,B0-silent
,C1-low
,D2-notlive 💤
A0-please_review
,B0-silent
,C1-low
,D3-trivial 🧸
A0-please_review
,B0-silent
,C1-low
,D3-trivial 🧸
A2-insubstantial
,B0-silent
,D3-trivial 🧸
A0-please_review
,C1-low
,D9-needsaudit 👮
,B1-note_worthy
,T1-runtime
set_min_balance
when sufficient -A0-please_review
,B0-silent
,C1-low
,D5-nicetohaveaudit ⚠️
zombienet
version to v1.3.37 -A0-please_review
,B0-silent
,C1-low
A2-insubstantial
,B0-silent
,C1-low
,D3-trivial 🧸
,T1-runtime
A0-please_review
,B0-silent
,C1-low
,D3-trivial 🧸
A2-insubstantial
,B0-silent
,C1-low
,D2-notlive 💤
A0-please_review
,C3-medium
,D1-audited 👍
,B1-note_worthy
,T1-runtime
B0-silent
,C1-low
,D3-trivial 🧸
A2-insubstantial
,B0-silent
,C1-low
sc-network
-A0-please_review
,C1-low
,B1-note_worthy
,T2-API
new_full_parts_with_genesis_builder
from sc-service -B0-silent
,C1-low
,D3-trivial 🧸
A0-please_review
,B0-silent
,C1-low
,D3-trivial 🧸
blake2b_simd
crate insp-core-hashing
-A0-please_review
,I9-optimisation
,B0-silent
,C1-low
,D3-trivial 🧸
A0-please_review
,B0-silent
,C1-low
,D3-trivial 🧸
A0-please_review
,B0-silent
,D3-trivial 🧸
A0-please_review
,B0-silent
,C1-low
,D3-trivial 🧸
A0-please_review
,B0-silent
,C1-low
,D3-trivial 🧸
A0-please_review
,B0-silent
,C1-low
,D3-trivial 🧸
MessageQueue
: unknit permanently overweight books -A0-please_review
,B0-silent
,C1-low
,D5-nicetohaveaudit ⚠️
,T1-runtime
B0-silent
,C1-low
,D2-breaksapi
A2-insubstantial
,B0-silent
,C1-low
,D3-trivial 🧸
A0-please_review
,B0-silent
,C1-low
,D3-trivial 🧸
A0-please_review
,B0-silent
,C1-low
,D3-trivial 🧸
A2-insubstantial
,I2-security
,D3-trivial 🧸
,B1-note_worthy
,C7-critical
,T0-node
A0-please_review
,A2-insubstantial
,C1-low
,D3-trivial 🧸
,B1-note_worthy
,T1-runtime
A0-please_review
,B0-silent
,C1-low
,D3-trivial 🧸
A0-please_review
,B0-silent
,C1-low
,D3-trivial 🧸
A0-please_review
,B0-silent
,C1-low
,D3-trivial 🧸
A0-please_review
,B0-silent
,C1-low
,D3-trivial 🧸
A0-please_review
,C1-low
,D3-trivial 🧸
,B1-note_worthy
,F3-breaks_API
,T2-API
A0-please_review
,C1-low
,D2-notlive 💤
,B1-note_worthy
,T1-runtime
A2-insubstantial
,B0-silent
,C1-low
A0-please_review
,B0-silent
,C1-low
,D2-breaksapi
A0-please_review
,C1-low
,D1-audited 👍
,B1-note_worthy
,E0-runtime_migration
,T1-runtime
A0-please_review
,B0-silent
,C1-low
,D3-trivial 🧸
A0-please_review
,B0-silent
,C1-low
,D3-trivial 🧸
A0-please_review
,C1-low
,D3-trivial 🧸
,B1-note_worthy
,T1-runtime
A0-please_review
,B0-silent
,C1-low
,D3-trivial 🧸
A0-please_review
,B0-silent
,C1-low
,D1-audited 👍
sc-network-common
back tosc-network
-A0-please_review
,C1-low
,D3-trivial 🧸
,B1-note_worthy
,T0-node
A0-please_review
,B0-silent
,C1-low
A0-please_review
,A2-insubstantial
,B0-silent
,C1-low
,D3-trivial 🧸
A0-please_review
,B0-silent
,C1-low
,D3-trivial 🧸
feasibility_check
in MinerConfig -A0-please_review
,B0-silent
,C1-low
,D3-trivial 🧸
,T1-runtime
A0-please_review
,C1-low
,D1-audited 👍
,B1-note_worthy
,E0-runtime_migration
,T1-runtime
A3-in_progress
,C1-low
,D3-trivial 🧸
,B1-note_worthy
,T1-runtime
A0-please_review
,B0-silent
,C1-low
A0-please_review
,C1-low
,D3-trivial 🧸
,B1-note_worthy
,T1-runtime
A2-insubstantial
,B0-silent
,C1-low
FeePolynomial
struct -A0-please_review
,B0-silent
,C1-low
,D3-trivial 🧸
A0-please_review
,B0-silent
,C1-low
,D3-trivial 🧸
A2-insubstantial
,I6-documentation
,B0-silent
,C1-low
,D3-trivial 🧸
A0-please_review
,B0-silent
,C1-low
temp-base-path-work
test -A0-please_review
,B0-silent
,C1-low
,D3-trivial 🧸
A0-please_review
,I5-tests
,B0-silent
,C1-low
,D2-notlive 💤
A0-please_review
,B0-silent
,C1-low
A0-please_review
,B0-silent
,C1-low
A0-please_review
,A2-insubstantial
,B0-silent
,C1-low
,D3-trivial 🧸
A0-please_review
,B0-silent
,C1-low
,D9-needsaudit 👮
A0-please_review
,B0-silent
,C1-low
,D3-trivial 🧸
A0-please_review
,B0-silent
,C1-low
,D3-trivial 🧸
test-linux-stable
excessive run time -A0-please_review
,B0-silent
,C1-low
A0-please_review
,B0-silent
,C1-low
,D3-trivial 🧸
A0-please_review
,I5-tests
,B0-silent
,C1-low
,D3-trivial 🧸
trie-db
to 0.27.1 (fix storage iteration bug + change seek behavior with prefix) -A0-please_review
,I3-bug
,C3-medium
,D3-trivial 🧸
,B1-note_worthy
,E3-host_functions
,T2-API
trait Ext::*_storage_transparent
functions -A0-please_review
,B0-silent
,C1-low
,D3-trivial 🧸
A0-please_review
,B0-silent
,D3-trivial 🧸
Currency
; introduce holds and freezing intofungible
traits -A0-please_review
,C1-low
,D1-audited 👍
,B1-note_worthy
,T1-runtime
,T2-API
A2-insubstantial
,B0-silent
,C1-low
,D3-trivial 🧸
A0-please_review
,A2-insubstantial
,B0-silent
,C1-low
,D3-trivial 🧸
A0-please_review
,B0-silent
,C1-low
,D3-trivial 🧸
A0-please_review
,B0-silent
,C1-low
,D3-trivial 🧸
A0-please_review
,B0-silent
,C1-low
,D3-trivial 🧸
A0-please_review
,B0-silent
,C1-low
,D3-trivial 🧸
LOG_TARGET
const added -B0-silent
,C1-low
,D3-trivial 🧸
A0-please_review
,B0-silent
,C1-low
,D3-trivial 🧸
B0-silent
,C1-low
,D3-trivial 🧸
A0-please_review
,B0-silent
,C1-low
A0-please_review
,B0-silent
,C1-low
,D3-trivial 🧸
A2-insubstantial
,B0-silent
,C1-low
,D3-trivial 🧸
A2-insubstantial
,B0-silent
,C1-low
A2-insubstantial
,B0-silent
,C1-low
,D3-trivial 🧸
,E2-dependencies
max_rpc_payload_size
-A0-please_review
,B0-silent
,C1-low
A2-insubstantial
,B0-silent
,C1-low
,D3-trivial 🧸
A2-insubstantial
,B0-silent
,C1-low
,D3-trivial 🧸
A2-insubstantial
,B0-silent
,C1-low
A0-please_review
,B0-silent
,C1-low
,D3-trivial 🧸
A2-insubstantial
,I6-documentation
,B0-silent
,C1-low
A0-please_review
,B0-silent
,C1-low
,D3-trivial 🧸
A0-please_review
,C1-low
,D3-trivial 🧸
,B1-note_worthy
,T1-runtime
A2-insubstantial
,B0-silent
,C1-low
,D3-trivial 🧸
A2-insubstantial
,B0-silent
,C1-low
,D3-trivial 🧸
A0-please_review
,B0-silent
,C1-low
,D3-trivial 🧸
A0-please_review
,B0-silent
,C1-low
,D3-trivial 🧸
A0-please_review
,B0-silent
,C1-low
,D3-trivial 🧸
from_rational
-A0-please_review
,B0-silent
,C1-low
,D3-trivial 🧸
,T1-runtime
A0-please_review
,C1-low
,D3-trivial 🧸
,B1-note_worthy
,T0-node
A0-please_review
,B0-silent
,C1-low
,D1-audited 👍
A2-insubstantial
,B0-silent
,C1-low
,D3-trivial 🧸
A2-insubstantial
,B0-silent
,C1-low
A0-please_review
,B0-silent
,C1-low
,D3-trivial 🧸
SyncState
-A0-please_review
,B0-silent
,C1-low
,D3-trivial 🧸
A0-please_review
,C1-low
,D1-audited 👍
,B1-note_worthy
,T1-runtime
A0-please_review
,A2-insubstantial
,B0-silent
,C1-low
,D3-trivial 🧸
A2-insubstantial
,B0-silent
,C1-low
,D3-trivial 🧸
A0-please_review
,B0-silent
,C1-low
A2-insubstantial
,B0-silent
,C1-low
,D3-trivial 🧸
A0-please_review
,C1-low
,D3-trivial 🧸
,B1-note_worthy
,T1-runtime
A2-insubstantial
,B0-silent
,C1-low
,D3-trivial 🧸
A0-please_review
,D1-audited 👍
,B1-note_worthy
,C7-critical
,E0-runtime_migration
,T1-runtime
A0-please_review
,C1-low
,D3-trivial 🧸
,B1-note_worthy
,T1-runtime
A2-insubstantial
,B0-silent
,C1-low
,D3-trivial 🧸
A0-please_review
,B0-silent
RUSTFLAGS
differs onmaster
and PRs -A2-insubstantial
,B0-silent
,C1-low
A0-please_review
,B0-silent
,C1-low
,D3-trivial 🧸
,T0-node
RUSTFLAGS
-A0-please_review
,B0-silent
,C1-low
A2-insubstantial
,B0-silent
,C1-low
,D3-trivial 🧸
A0-please_review
,C1-low
,D3-trivial 🧸
,B1-note_worthy
,T0-node
A2-insubstantial
,B0-silent
,C1-low
A2-insubstantial
,B0-silent
,C1-low
A0-please_review
,B0-silent
,C1-low
,D3-trivial 🧸
A0-please_review
,B0-silent
,C1-low
,D3-trivial 🧸
A2-insubstantial
,B0-silent
,C1-low
A0-please_review
,B0-silent
,D3-trivial 🧸
A0-please_review
,B0-silent
,C1-low
,D3-trivial 🧸
A0-please_review
,B0-silent
,C1-low
,D3-trivial 🧸
mpsc_network_worker
-A0-please_review
,B0-silent
,C1-low
,D3-trivial 🧸
,T0-node
A0-please_review
,B0-silent
,D3-trivial 🧸
B0-silent
,C1-low
,D3-trivial 🧸
A0-please_review
,B0-silent
,C1-low
A0-please_review
,A2-insubstantial
,B0-silent
,C1-low
,D2-notlive 💤
A2-insubstantial
,B0-silent
,C1-low
,D3-trivial 🧸
A0-please_review
,B0-silent
,C1-low
DeletionQueue
-A0-please_review
,C1-low
,D3-trivial 🧸
,B1-note_worthy
,T1-runtime
A0-please_review
,B0-silent
,C1-low
,D5-nicetohaveaudit ⚠️
,T0-node
A0-please_review
,B0-silent
,C1-low
,D3-trivial 🧸
B0-silent
,C1-low
,D3-trivial 🧸
A0-please_review
,B0-silent
,C1-low
,D3-trivial 🧸
,T1-runtime
A0-please_review
,B0-silent
,C1-low
,D3-trivial 🧸
A2-insubstantial
,B0-silent
,C1-low
,D3-trivial 🧸
A0-please_review
,B0-silent
,C1-low
,D3-trivial 🧸
sign-ext
WASM feature when building runtimes -A0-please_review
,B0-silent
,C1-low
,D3-trivial 🧸
A0-please_review
,C1-low
,D3-trivial 🧸
,B1-note_worthy
,T1-runtime
A0-please_review
,C1-low
,D3-trivial 🧸
,B1-note_worthy
,F3-breaks_API
,T0-node
A0-please_review
,C1-low
,D3-trivial 🧸
,B1-note_worthy
,T1-runtime
A2-insubstantial
,B0-silent
,C1-low
,D3-trivial 🧸
A0-please_review
,C1-low
,D3-trivial 🧸
,B1-note_worthy
,T1-runtime
A0-please_review
,B0-silent
,C1-low
,D3-trivial 🧸
A0-please_review
,C1-low
,D3-trivial 🧸
,B1-note_worthy
,T1-runtime
I6-documentation
,B0-silent
,C1-low
,D3-trivial 🧸
ReadRuntimeVersionExt
toExecutionExtension
-A0-please_review
,B0-silent
,C1-low
,D3-trivial 🧸
on_idle
round-robin logic totrait Hooks
cargo doc -A0-please_review
,B0-silent
,C1-low
,D3-trivial 🧸
,T1-runtime
A0-please_review
,C1-low
,D3-trivial 🧸
,B1-note_worthy
,T0-node
A2-insubstantial
,B0-silent
,C1-low
A0-please_review
,B0-silent
,C1-low
,D3-trivial 🧸
try-runtime follow-chain
, try-runtime upgrade tuple tests, cli test utils -A0-please_review
,C1-low
,D3-trivial 🧸
,B1-note_worthy
,T0-node
pallet-template
-A0-please_review
,B0-silent
,C1-low
,D2-notlive 💤
RemovePallet
migration utility struct -A0-please_review
,C1-low
,D3-trivial 🧸
,B1-note_worthy
,T1-runtime
A2-insubstantial
,B0-silent
,C1-low
A0-please_review
,B0-silent
,C1-low
,D3-trivial 🧸
A0-please_review
,C1-low
,D3-trivial 🧸
,B1-note_worthy
,T0-node
OutputExceedsBounds
variant toError
-A0-please_review
,B0-silent
,C1-low
,D3-trivial 🧸
A0-please_review
,B0-silent
,C1-low
,D3-trivial 🧸
,T1-runtime
A0-please_review
,C1-low
,D3-trivial 🧸
,B1-note_worthy
,T0-node
A2-insubstantial
,B0-silent
,C1-low
WasmModule
-A0-please_review
,B0-silent
,C1-low
,D3-trivial 🧸
A0-please_review
,B0-silent
,C1-low
,D3-trivial 🧸
A0-please_review
,C1-low
,D3-trivial 🧸
,B1-note_worthy
,T1-runtime
A0-please_review
,A2-insubstantial
,B0-silent
,C1-low
,D3-trivial 🧸
A0-please_review
,C1-low
,D3-trivial 🧸
,B1-note_worthy
,T1-runtime
A2-insubstantial
,B0-silent
,C1-low
A0-please_review
,B0-silent
,C1-low
,D3-trivial 🧸
A0-please_review
,B0-silent
,C1-low
,D3-trivial 🧸
,T1-runtime
A0-please_review
,B0-silent
,C1-low
,D3-trivial 🧸
--locked
-A2-insubstantial
,B0-silent
,C1-low
A0-please_review
,B0-silent
,C1-low
,D2-notlive 💤
B0-silent
,D3-trivial 🧸
,E2-dependencies
A0-please_review
,C1-low
,D3-trivial 🧸
,B1-note_worthy
,T1-runtime
A0-please_review
,B0-silent
,C1-low
,D3-trivial 🧸
A2-insubstantial
,B0-silent
,C1-low
,D3-trivial 🧸
,E2-dependencies
A2-insubstantial
,B0-silent
,C1-low
,E2-dependencies
A0-please_review
,B0-silent
,C1-low
,D3-trivial 🧸
[seal0] call_runtime()
-B0-silent
,D3-trivial 🧸
,T4-smart_contracts
A2-insubstantial
,B0-silent
,C1-low
A2-insubstantial
,B0-silent
,C1-low
A2-insubstantial
,B0-silent
,C1-low
A0-please_review
,A2-insubstantial
,B0-silent
,C1-low
,D3-trivial 🧸
A2-insubstantial
,B0-silent
,C1-low
,E2-dependencies
A0-please_review
,C1-low
,D3-trivial 🧸
,B1-note_worthy
,T0-node
A2-insubstantial
,B0-silent
,C1-low
A2-insubstantial
,B0-silent
,C1-low
,E2-dependencies
TracingUnboundedReceiver
is dropped -A0-please_review
,C1-low
,B1-note_worthy
,T0-node
A0-please_review
,B0-silent
,C1-low
,D3-trivial 🧸
A0-please_review
,C1-low
,B1-note_worthy
,T0-node
B0-silent
,D3-trivial 🧸
A0-please_review
,B0-silent
,C1-low
,D3-trivial 🧸
A2-insubstantial
,B0-silent
,C1-low
,D3-trivial 🧸
A2-insubstantial
,B0-silent
,C1-low
,D3-trivial 🧸
A0-please_review
,B0-silent
,C1-low
,D3-trivial 🧸
,T1-runtime
Notifications
-A0-please_review
,B0-silent
,C1-low
,D3-trivial 🧸
,T0-node
A0-please_review
,B0-silent
,C1-low
A0-please_review
,B0-silent
,C1-low
,D3-trivial 🧸
A0-please_review
,B0-silent
,C1-low
,D3-trivial 🧸
A2-insubstantial
,B0-silent
,C1-low
,D3-trivial 🧸
A0-please_review
,B0-silent
,C1-low
,D3-trivial 🧸
A0-please_review
,B0-silent
,C1-low
,D3-trivial 🧸
A0-please_review
,B0-silent
,C1-low
,D3-trivial 🧸
A0-please_review
,B0-silent
,D1-audited 👍
,F3-breaks_API
build_network
doesn't require theMaintainedTransactionPool
bound -A2-insubstantial
,B0-silent
,C1-low
,D3-trivial 🧸
A2-insubstantial
,B0-silent
,C1-low
A2-insubstantial
,B0-silent
,C1-low
A0-please_review
,B0-silent
,C1-low
,D5-nicetohaveaudit ⚠️
A0-please_review
,B0-silent
,C1-low
,D3-trivial 🧸
,T0-node
SyncingEngine
-A0-please_review
,B0-silent
,C1-low
,D3-trivial 🧸
,T0-node
balances
impl_currency
WithdrawReasons note -A2-insubstantial
,B0-silent
,C1-low
,D3-trivial 🧸
A0-please_review
,B0-silent
,C1-low
A0-please_review
,C1-low
,D1-audited 👍
,B1-note_worthy
,T1-runtime
A0-please_review
,B0-silent
,C1-low
,D3-trivial 🧸
A2-insubstantial
,B0-silent
,C1-low
,E2-dependencies
A0-please_review
,B0-silent
,C1-low
,D3-trivial 🧸
A3-in_progress
,B0-silent
,C1-low
,D3-trivial 🧸
A0-please_review
,B0-silent
,C1-low
,D1-audited 👍
A0-please_review
,B0-silent
,C1-low
A2-insubstantial
,B0-silent
,C1-low
,D3-trivial 🧸
,E2-dependencies
A2-insubstantial
,B0-silent
,C1-low
,D3-trivial 🧸
A0-please_review
,C1-low
,D3-trivial 🧸
,B1-note_worthy
,T1-runtime
A0-please_review
,B0-silent
,C1-low
A0-please_review
,C1-low
,D3-trivial 🧸
,B1-note_worthy
,T0-node
A0-please_review
,B0-silent
,C1-low
,D3-trivial 🧸
decl_*
macros to the newpallet
macros -A0-please_review
,B0-silent
,C1-low
,D3-trivial 🧸
A0-please_review
,C3-medium
,D1-audited 👍
,B1-note_worthy
,E0-runtime_migration
,T1-runtime
A0-please_review
,B0-silent
,C1-low
,D3-trivial 🧸
A0-please_review
,B0-silent
,D5-nicetohaveaudit ⚠️
A2-insubstantial
,B0-silent
,C1-low
,D3-trivial 🧸
A0-please_review
,B0-silent
,C1-low
,D3-trivial 🧸
A0-please_review
,B0-silent
,C1-low
,D1-audited 👍
,T1-runtime
A0-please_review
,B0-silent
,C1-low
,D3-trivial 🧸
A0-please_review
,B0-silent
,C1-low
,D3-trivial 🧸
A0-please_review
,C3-medium
,D3-trivial 🧸
,B1-note_worthy
,T1-runtime
A0-please_review
,B0-silent
,C1-low
,D3-trivial 🧸
A0-please_review
,B0-silent
,C1-low
,D3-trivial 🧸
A2-insubstantial
,B0-silent
,C1-low
,D3-trivial 🧸
A0-please_review
,B0-silent
,C1-low
,D5-nicetohaveaudit ⚠️
A0-please_review
,B0-silent
,C1-low
A0-please_review
,C1-low
,D5-nicetohaveaudit ⚠️
,B1-note_worthy
,T1-runtime
try_state
hook in elections and EPM pallets -A0-please_review
,I5-tests
,B0-silent
,C1-low
,D3-trivial 🧸
,T0-node
A2-insubstantial
,B0-silent
,C1-low
,D3-trivial 🧸
,E2-dependencies
A0-please_review
,B0-silent
,C1-low
,D3-trivial 🧸
A0-please_review
,B0-silent
,C1-low
,D3-trivial 🧸
A2-insubstantial
,B0-silent
,C1-low
,D3-trivial 🧸
A0-please_review
,B0-silent
,C1-low
,D1-audited 👍
A2-insubstantial
,B0-silent
,C1-low
,D3-trivial 🧸
A0-please_review
,B0-silent
,C1-low
A0-please_review
,B0-silent
,C1-low
B0-silent
,C1-low
,D5-nicetohaveaudit ⚠️
A2-insubstantial
,B0-silent
,C1-low
,D3-trivial 🧸
,E2-dependencies
A0-please_review
,C1-low
,D3-trivial 🧸
,B1-note_worthy
,T0-node
check-crates-publishing
job on prs -A2-insubstantial
,B0-silent
,C1-low
A0-please_review
,B0-silent
,C1-low
,D3-trivial 🧸
,T0-node
Cargo.toml
. -A2-insubstantial
,B0-silent
,C1-low
,D3-trivial 🧸
A0-please_review
,C3-medium
,D2-breaksapi
,B1-note_worthy
,T2-API
A0-please_review
,C1-low
,B1-note_worthy
,T0-node
A0-please_review
,C1-low
,D5-nicetohaveaudit ⚠️
,B1-note_worthy
,E3-host_functions
,T0-node
cargo-check-benches
: don't merge inmaster
if base ref isn'tmaster
-A0-please_review
,B0-silent
,C1-low
A0-please_review
,B0-silent
,C1-low
,D3-trivial 🧸
B0-silent
,C1-low
,D3-trivial 🧸
A0-please_review
,C1-low
,D3-trivial 🧸
,B1-note_worthy
,T1-runtime
A0-please_review
,B0-silent
,C1-low
,D3-trivial 🧸
StorageVersion
-A0-please_review
,C1-low
,D3-trivial 🧸
,B1-note_worthy
,T1-runtime
A0-please_review
,B0-silent
,C1-low
,D3-trivial 🧸
A0-please_review
,B0-silent
,C1-low
B0-silent
A0-please_review
,B0-silent
,C1-low
,D3-trivial 🧸
A2-insubstantial
,B0-silent
,C1-low
,D3-trivial 🧸
call_runtime
-A0-please_review
,B0-silent
,C1-low
,D3-trivial 🧸
try-runtime::on_runtime_upgrade
and fix some storage version issues -A0-please_review
,B0-silent
,C1-low
,D3-trivial 🧸
A0-please_review
,B0-silent
,C1-low
,D3-trivial 🧸
A0-please_review
,B0-silent
,C1-low
Blocked
Status -A0-please_review
,C1-low
,D1-audited 👍
,B1-note_worthy
,T1-runtime
node-cli
tests in CI and fix them -A0-please_review
,B0-silent
,C1-low
,D3-trivial 🧸
Block history
if doing major sync -A0-please_review
,C1-low
,B1-note_worthy
,T0-node
A2-insubstantial
,B0-silent
,C1-low
,D3-trivial 🧸
,E2-dependencies
A0-please_review
,B0-silent
,C1-low
,D3-trivial 🧸
decl_*
macros to the newpallet
macros -A0-please_review
,B0-silent
,C1-low
,D3-trivial 🧸
A0-please_review
,B0-silent
,C1-low
,D3-trivial 🧸
decl_*
Macros -A3-in_progress
,C3-medium
,D3-trivial 🧸
,B1-note_worthy
,T1-runtime
A0-please_review
,B0-silent
,C1-low
,D3-trivial 🧸
A2-insubstantial
,B0-silent
,C1-low
A0-please_review
,B0-silent
,C1-low
,D3-trivial 🧸
Copy
bound onCollectionId
in the uniques pallet -A0-please_review
,I7-refactor
,B0-silent
,C1-low
,D3-trivial 🧸
A0-please_review
,C1-low
,D9-needsaudit 👮
,B1-note_worthy
,T1-runtime
node-template-release
in workspace -A2-insubstantial
,B0-silent
,C1-low
,D2-notlive 💤
kvdb-rocksdb
to 0.19.0 -A0-please_review
,B0-silent
,C1-low
#[pallet::generate_storage_info]
from docs -A0-please_review
,B0-silent
,C1-low
,D3-trivial 🧸
Cargo.lock
-A0-please_review
,A2-insubstantial
,B0-silent
,C1-low
sc-network
forProtocolController
/NotificationService
-A0-please_review
,B0-silent
,C1-low
,D3-trivial 🧸
,T0-node
A0-please_review
,B0-silent
,C1-low
,D3-trivial 🧸
,F3-breaks_API
A0-please_review
,B0-silent
,C1-low
,D3-trivial 🧸
system::set_code
instrisic -A0-please_review
,C1-low
,D3-trivial 🧸
,B1-note_worthy
,T1-runtime
A0-please_review
,C1-low
,D3-trivial 🧸
,B1-note_worthy
,T1-runtime
A0-please_review
,B0-silent
,C1-low
A2-insubstantial
,B0-silent
,C1-low
A0-please_review
,B0-silent
,C1-low
,D2-notlive 💤
,T1-runtime
free_space
calculation and cli default value -A0-please_review
,B0-silent
,C1-low
,D3-trivial 🧸
sp-serializer
which is not useful -A2-insubstantial
,B0-silent
,C1-low
,D3-trivial 🧸
A0-please_review
,A2-insubstantial
,B0-silent
,C1-low
,D3-trivial 🧸
A0-please_review
,B0-silent
,C1-low
,D3-trivial 🧸
A0-please_review
,Z0-trivial
,B0-silent
,C1-low
,D3-trivial 🧸
,T1-runtime
A0-please_review
,B0-silent
,C1-low
A0-please_review
,B0-silent
,C1-low
,D3-trivial 🧸
entropy
function into frame System -A0-please_review
,C1-low
,D9-needsaudit 👮
,B1-note_worthy
,T1-runtime
RuntimeDebug
infeature = try-runtime
-A0-please_review
,A2-insubstantial
,B0-silent
,C1-low
,D2-notlive 💤
frame_system::unique
to avoid minor entropy loss -A2-insubstantial
,B0-silent
,C1-low
,D3-trivial 🧸
,T1-runtime
A2-insubstantial
,B0-silent
,C1-low
,D3-trivial 🧸
A0-please_review
,B0-silent
,C1-low
,D2-notlive 💤
A2-insubstantial
,B0-silent
,C1-low
,E2-dependencies
A0-please_review
,B0-silent
,C1-low
B0-silent
A0-please_review
,B0-silent
,C1-low
A0-please_review
,A2-insubstantial
,B0-silent
,C1-low
,D3-trivial 🧸
uniques
remove oneencode
call -A0-please_review
,B0-silent
,C1-low
,D3-trivial 🧸
A0-please_review
,B0-silent
,C1-low
,D5-nicetohaveaudit ⚠️
serde
feature flag to primitives -A0-please_review
,C1-low
,D3-trivial 🧸
,B1-note_worthy
,T2-API
Inactive Issuance
-A2-insubstantial
,B0-silent
,C1-low
,D3-trivial 🧸
A0-please_review
,B0-silent
,C1-low
,D3-trivial 🧸
dev_mode
for explicit key binding -A0-please_review
,C1-low
,D3-trivial 🧸
,B1-note_worthy
,T1-runtime
A2-insubstantial
,B0-silent
,C1-low
approve
call -A0-please_review
,B0-silent
,C1-low
,D3-trivial 🧸
A0-please_review
,B0-silent
,C1-low
C1-low
,D3-trivial 🧸
,B1-note_worthy
,T1-runtime
A0-please_review
,B0-silent
,C1-low
,D3-trivial 🧸
ProcessMessage
-A0-please_review
,B0-silent
,C1-low
,D5-nicetohaveaudit ⚠️
,T1-runtime
A2-insubstantial
,Z0-trivial
,C1-low
,B1-note_worthy
,T0-node
A2-insubstantial
,B0-silent
,C1-low
,D3-trivial 🧸
A2-insubstantial
,B0-silent
,C1-low
,D3-trivial 🧸
A0-please_review
,B0-silent
,C1-low
,D2-notlive 💤
create_runtime_from_artifact_bytes
-A0-please_review
,B0-silent
,C1-low
,D3-trivial 🧸
,T0-node
A0-please_review
,C1-low
,B1-note_worthy
,T0-node
A0-please_review
,C1-low
,D3-trivial 🧸
,B1-note_worthy
,T1-runtime
A0-please_review
,B0-silent
,C1-low
,D9-needsaudit 👮
A0-please_review
,C3-medium
,D1-audited 👍
,B1-note_worthy
,T1-runtime
Copy
bound onAssetId
-A0-please_review
,I7-refactor
,B0-silent
,C1-low
,D3-trivial 🧸
Peerset
into reputation store &ProtocolController
s -A0-please_review
,B0-silent
,C1-low
,D2-breaksapi
A0-please_review
,J0-enhancement
,B0-silent
,C1-low
,D3-trivial 🧸
,T5-parachains
A2-insubstantial
,B0-silent
,C1-low
,D3-trivial 🧸
,E2-dependencies
A0-please_review
,C1-low
,D3-trivial 🧸
,B1-note_worthy
,T0-node
A0-please_review
,B0-silent
,C1-low
,D3-trivial 🧸
A0-please_review
,C1-low
,D3-trivial 🧸
,B1-note_worthy
,T0-node
A0-please_review
,B0-silent
,C1-low
,D3-trivial 🧸
A0-please_review
,B0-silent
,C1-low
,D3-trivial 🧸
A0-please_review
,B0-silent
,C1-low
,D3-trivial 🧸
A0-please_review
,B0-silent
,C1-low
,D3-trivial 🧸
Watched labels
C7-critical
D2-breaksapi
total_supply
toamount
Peerset
into reputation store &ProtocolController
sE0-runtime_migration
MessageQueue
E1-database_migration
E3-host_functions
trie-db
to 0.27.1 (fix storage iteration bug + change seek behavior with prefix)F3-breaks_API