- Mar 07, 2022
-
-
Doordashcon authored
* add benchmarks for xcmp queue config data setters * add new benchmarks * cargo fmt * added newline * Additional weights for dmp queue for westmint * include new weights * Adding WeightInfo trait and friends * WeightInfo should be on xcmp rather than dmp pallet * cargo fmt * update scripts * mock weightinfo * cargo fmt * canvas kusama is substrate weight * weights from bm2 * expanding to other similar config functions * updated weights from bm2 * Revert "updated weights from bm2" This reverts commit b1702780982c278b44f572c2089b1d7ddc564d76. * Consolidation to one benchmark * reran weights * Update pallets/xcmp-queue/src/lib.rs Co-authored-by: Ignacio Palacios <[email protected]> * integrating review feedback * rerun weights * Add DispatchClass::Operational Co-authored-by: Squirrel <[email protected]> Co-authored-by: Ignacio Palacios <[email protected]>
-
- Mar 02, 2022
-
-
Kai authored
* register validators in set_invulnerables benchmarking * Apply suggestions from code review Co-authored-by: Bastian Köcher <[email protected]>
-
Dan Shields authored
* Update throughout with common Cargo formating scheme
-
- Feb 25, 2022
-
-
wigy authored
* Updating dependencies * Adapting code to scale v3 * cargo fmt * Fix compilation * Update Cargo.lock * TIL exists Co-authored-by: Bastian Köcher <[email protected]>
-
- Feb 23, 2022
-
-
dependabot[bot] authored
Bumps [proc-macro-crate](https://github.com/bkchr/proc-macro-crate) from 1.1.2 to 1.1.3. - [Release notes](https://github.com/bkchr/proc-macro-crate/releases) - [Commits](https://github.com/bkchr/proc-macro-crate/commits) --- updated-dependencies: - dependency-name: proc-macro-crate dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
-
- Feb 22, 2022
-
-
dependabot[bot] authored
Bumps [hex-literal](https://github.com/RustCrypto/utils) from 0.2.1 to 0.3.4. - [Release notes](https://github.com/RustCrypto/utils/releases) - [Commits](https://github.com/RustCrypto/utils/compare/hex-literal-v0.2.1...hex-literal-v0.3.4) --- updated-dependencies: - dependency-name: hex-literal dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
-
- Feb 14, 2022
-
-
Keith Yeung authored
* Update rand to v0.8.5 * Enable std_rng feature on rand * Enable std_rng only when std is enabled * Revert "Enable std_rng only when std is enabled" This reverts commit 8fb3b72dbd6dc18bc19868b999b5b07cea4b7392.
-
- Feb 09, 2022
-
-
Bastian Köcher authored
-
- Feb 07, 2022
-
-
omadoyeabraham authored
* Added check to ensure invulnerables have associated validator keys before they are set * Added check to ensure invulnerables have associated validator keys before they are set * Update pallets/collator-selection/src/lib.rs Co-authored-by: Keith Yeung <[email protected]> * Added test for associated validators when setting invulnerables * FMT Co-authored-by: Omadoye Abraham <[email protected]> Co-authored-by: Ricardo Rius <[email protected]> Co-authored-by: Keith Yeung <[email protected]> Co-authored-by: Bastian Köcher <[email protected]>
-
- Feb 05, 2022
-
-
Doordashcon authored
* add QueueConfigData setter * update weights * syntax change * add test case * fix Result error * cargo fmt * Apply suggestions from code review Co-authored-by: Alexander Popiak <[email protected]> * update * one call per set * cargo fmt * cargo fmt * mutate method * cargo fmt Co-authored-by: Alexander Popiak <[email protected]>
-
- Jan 31, 2022
-
-
Keith Yeung authored
* Add the ability to suspend or resume XCM execution on the XCMP queue * Rename QueueActive to QueueSuspended * Add the ability to suspend the DMP queue * Rename XCMP to DMP in comments where appropriate Co-authored-by: Alexander Popiak <[email protected]> * Add a bypass for XCMP queue suspension * Revert "Add the ability to suspend the DMP queue" This reverts commit 363ca09b41e40fce3f2740e7ab78f5c54781ca5c. * Change controller origin to either root or council-issued origin * Rename to ControllerOriginConverter Co-authored-by: Alexander Popiak <[email protected]>
-
- Jan 25, 2022
-
-
Sebastian Kunert authored
-
- Jan 21, 2022
-
-
Keith Yeung authored
* Rename ParentIsDefault to ParentIsAllZeroes * Fixes * Create ParentAccounts for respective networks * Fixes * Use b"Parent" as the basis for generating parent AccountId * Fixes * Use preset parent account ID * update lockfile for {"polkadot"} Co-authored-by: parity-processbot <>
-
- Jan 20, 2022
-
-
Oliver Tale-Yazdi authored
* Add `without_storage_info` Signed-off-by: Oliver Tale-Yazdi <[email protected]> * Add `without_storage_info` Signed-off-by: Oliver Tale-Yazdi <[email protected]> * Add `without_storage_info` Signed-off-by: Oliver Tale-Yazdi <[email protected]> * Add `without_storage_info` Signed-off-by: Oliver Tale-Yazdi <[email protected]> * update lockfile for {"polkadot"} * Run `cargo update -p sp-io` Signed-off-by: Oliver Tale-Yazdi <[email protected]> Co-authored-by: parity-processbot <>
-
- Jan 19, 2022
-
-
Squirrel authored
* First doc lines should show as tool tips * Update pallets/collator-selection/src/lib.rs * Update pallets/collator-selection/src/lib.rs Co-authored-by: joe petrowski <[email protected]> * Update pallets/collator-selection/src/lib.rs Co-authored-by: joe petrowski <[email protected]> * Update pallets/collator-selection/src/lib.rs Co-authored-by: joe petrowski <[email protected]> * moving comment onto storage Co-authored-by: Bastian Köcher <[email protected]> Co-authored-by: joe petrowski <[email protected]>
-
Bastian Köcher authored
* xcmp-queue: Fix handling of encoded blobs With #701 we tried to fix some infinite loop related to encoded blobs, however that lead actually to not being able to process encoded blobs at all. The reason for this is that `decode_all` doesn't consume the given input. The point of this function is that it returns an error if the data couldn't be decoded or there is still data left. However, this means that the check `remaining_fragments.len() < last_remaining_fragments.len()` would always fail. We remove the while loop, because we decode the entire fragment anyway or it fails. Aka, we don't need to loop here. Next we remove the broken check and we directly reset the `remaining_fragments` (because `decode_all` doesn't consume anything). * Restore correct behavior We need to use a while loop, because there can be multiple `Vec<u8>`s. We also need to use `decode`, because `decode_all` would otherwise return an error if the input is not empty afterwards. * Remove unused import
-
- Jan 14, 2022
-
-
Ignacio Palacios authored
* before adding seedling client side * seedling runtime compiles * create seedling spec script added * seedling node & BaseCallFilter fixes * update AllPalets * formatting * CallFilter + SignedExtra + AccountData fix * XCM removed * cleanup * solo-to-para pallet added & before testing * fix runtime upgrade method * soloToPara pallet + set header * clean up * clean up 2 * signed extension check sudo added * fmt + cleanup * Refac code and fixes * fmt * Update pallets/solo-to-para/src/lib.rs Co-authored-by: Bastian Köcher <[email protected]> * Update pallets/solo-to-para/src/lib.rs Co-authored-by: Bastian Köcher <[email protected]> * Update pallets/solo-to-para/src/lib.rs Co-authored-by: Bastian Köcher <[email protected]> * small fixes * OnValidationData used * small changes * Update pallets/solo-to-para/src/lib.rs Co-authored-by: Bastian Köcher <[email protected]> * Update pallets/solo-to-para/src/lib.rs Co-authored-by: Bastian Köcher <[email protected]> * Update pallets/solo-to-para/src/lib.rs Co-authored-by: Bastian Köcher <[email protected]> * OnValidationData replaced by OnSystemEvent * fmt + cargo fix * disable-default-bootnodes for seedling script Co-authored-by: Ricardo Rius <[email protected]> Co-authored-by: Ricardo Rius <[email protected]> Co-authored-by: Bastian Köcher <[email protected]>
-
- Jan 12, 2022
-
-
Xiliang Chen authored
* fix tests * update lockfile for substrate * update lockfile for {"polkadot"} Co-authored-by: parity-processbot <>
-
- Jan 03, 2022
-
-
Bastian Köcher authored
* Adds an integration test for testing the migration * Fix the custom validation header use case
-
- Dec 31, 2021
-
-
zqhxuyuan authored
* minor dmq test * fmt
-
- Dec 28, 2021
-
-
Keith Yeung authored
-
- Dec 24, 2021
-
-
Bastian Köcher authored
* sketch downward messages * bring in attempt to mock mqc-head from moonbeam * just patch individual crates * fing comma * add some logs * Holy shit, we actually imported a block! * Actually mock the message queue chain * use relay parent number for `sent_at` * finish moving MQC to primitives * more complete mock and better config type * change name * fix export * better map types * fix dependencies after rebase * try-rejigging branches because this is an override * try to re-jig for hrmp mcqs * fix branches * actually fix branches better * even better * Removestray log lines Co-authored-by: Bastian Köcher <[email protected]> * Nicer handling of default `ParachainSystem` name * better docs * Default MockXcm for people who only who don't care to mock xcm. * cargo fmt * trailing commas * Apply suggestions from code review Co-authored-by: Bastian Köcher <[email protected]> * use the variable for hrmp to * fix deref * deduplicate MessageQueueChain * better docs for MessageQueueChain * Use `Vec<u8>` instead of `&'static [u8]` Co-authored-by: Bastian Köcher <[email protected]> * cargo fmt * associated changes for using Vec<u8> * Unused import * Fix compilation Co-authored-by: Joshy Orndorff <[email protected]> Co-authored-by: Joshy Orndorff <[email protected]>
-
cheme authored
* state-update4 branch * new ref * Update to latest. * update deps * switch to host state version * update * fmt * up * remove trie patch * remove patch * fmt * update * set state_versions in runtimes * state version from storage * state version from storage * seedling compat * restore lock * update lockfile for substrate * update lockfile for polkadot Co-authored-by: parity-processbot <>
-
- Dec 21, 2021
-
-
Keith Yeung authored
-
- Dec 14, 2021
-
-
Gavin Wood authored
* author is Some * Bump * Lockfile * Fixes * Fixes * Fixes * Fixes * Bump * Update Cargo.lock * bump substrate and polkadot * fmt Co-authored-by: Shawn Tabrizi <[email protected]>
-
- Dec 11, 2021
-
-
Keith Yeung authored
-
- Dec 10, 2021
-
-
Bastian Köcher authored
* Update to latest Polkadot & Substrate * More fixes
-
- Dec 09, 2021
-
-
Gavin Wood authored
* MaxConsumers * Fixes * Fixes * Fixes * Fixes * Bump * Fixes * Fixes Co-authored-by: Shawn Tabrizi <[email protected]>
-
Keith Yeung authored
* Support overweight messages in XCMP queue * Add storage migration logic to XCMP queue pallet * Check whether required weight is larger than max individual weight first * cargo fmt * Add some unit tests * Remove review question comment
-
- Dec 03, 2021
-
-
Bastian Köcher authored
* Adds support for returning a custom header from `validate_block` This adds support for returning a custom header from `validate_block`. Before this, we always returned the header of the block that was validated (and still do it by default). However, after this pr it is possible to set a custom header or better custom head data that will be returned instead from `validate_block`. This can be for example when a chain wants to fork. * FMT
-
- Dec 02, 2021
-
-
Kian Paimani authored
* almost integrate * revert branch changes * remove extra deps * some review comments' * Fix a bunch of stuff * Update parachain-template/node/Cargo.toml Co-authored-by: Alexander Popiak <[email protected]> * Fix * Fix * fix benchmark * fmt * Remove wrong bench test Co-authored-by: Alexander Popiak <[email protected]>
-
Keith Yeung authored
* Rename InboundXcmpStatus and its related types * Rename OutboundXcmpStatus and its relevant types * Add documentation to the newly created types * Ensure storage prefixes are kept the same * Add code comments * Revert storage name changes * typo fix Co-authored-by: Alexander Popiak <[email protected]>
-
- Dec 01, 2021
-
-
zjb0807 authored
-
thiolliere authored
* companion * Run cargo update Co-authored-by: Keith Yeung <[email protected]>
-
- Nov 30, 2021
-
-
zjb0807 authored
* update frame-benchmarking/runtime-benchmarks * cargo update * add more feature flags Co-authored-by: Shawn Tabrizi <[email protected]>
-
- Nov 24, 2021
-
-
Chevdor authored
* Initial version * Fix branch pattern * Fix template * Update .github/ISSUE_TEMPLATE/release.md Co-authored-by: Alexander Popiak <[email protected]> * Update .github/ISSUE_TEMPLATE/release.md Co-authored-by: Alexander Popiak <[email protected]> * Rebase master and fmt * Swap out Polkadot JS section for integration tests + remove tags * remove tags Co-authored-by: Alexander Popiak <[email protected]>
-
Gavin Wood authored
-
- Nov 19, 2021
-
-
Bastian Köcher authored
* Update Substrate & Polkadot * Disable tests without debug assertions
-
Georges authored
* Moving `pallet-asset-tx-payment` to substrate * Pointing `substrate` to my branch to fix the CI * Fixing cargo.lock Memmlock2 was in double * Duplicate Prost-build * cargo update * Fixing cargo.lock post merge * Changes to `Cargo.toml` after substrate merge
-
- Nov 16, 2021
-
-
Dan Shields authored
* move to rust 2021 * fix formatting, more moves
-