-
Notifications
You must be signed in to change notification settings - Fork 1
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
Testing without docker-in-dockler #57
base: master
Are you sure you want to change the base?
Commits on Oct 20, 2024
-
Configuration menu - View commit details
-
Copy full SHA for 26c668f - Browse repository at this point
Copy the full SHA 26c668fView commit details
Commits on Oct 21, 2024
-
Configuration menu - View commit details
-
Copy full SHA for a026544 - Browse repository at this point
Copy the full SHA a026544View commit details -
Configuration menu - View commit details
-
Copy full SHA for a465d8b - Browse repository at this point
Copy the full SHA a465d8bView commit details -
Configuration menu - View commit details
-
Copy full SHA for 58dab0f - Browse repository at this point
Copy the full SHA 58dab0fView commit details -
Configuration menu - View commit details
-
Copy full SHA for 7cc592f - Browse repository at this point
Copy the full SHA 7cc592fView commit details -
Configuration menu - View commit details
-
Copy full SHA for a29d714 - Browse repository at this point
Copy the full SHA a29d714View commit details -
Configuration menu - View commit details
-
Copy full SHA for 97e62a0 - Browse repository at this point
Copy the full SHA 97e62a0View commit details -
Configuration menu - View commit details
-
Copy full SHA for f5ae184 - Browse repository at this point
Copy the full SHA f5ae184View commit details -
Configuration menu - View commit details
-
Copy full SHA for cc5de90 - Browse repository at this point
Copy the full SHA cc5de90View commit details
Commits on Oct 22, 2024
-
Configuration menu - View commit details
-
Copy full SHA for 73e18fc - Browse repository at this point
Copy the full SHA 73e18fcView commit details -
Update from mordamax running command 'bench-old --runtime westend --p…
…allet pallet_balances --clean'
Configuration menu - View commit details
-
Copy full SHA for ed66cff - Browse repository at this point
Copy the full SHA ed66cffView commit details -
Update from mordamax running command 'bench-old --runtime westend --p…
…allet pallet_balances'
Configuration menu - View commit details
-
Copy full SHA for d500d8e - Browse repository at this point
Copy the full SHA d500d8eView commit details -
Configuration menu - View commit details
-
Copy full SHA for c616ea1 - Browse repository at this point
Copy the full SHA c616ea1View commit details -
Update from mordamax running command 'bench --runtime westend --palle…
…t pallet_balances'
Configuration menu - View commit details
-
Copy full SHA for 27ad977 - Browse repository at this point
Copy the full SHA 27ad977View commit details -
Merge branch 'master' of https://github.com/paritytech/polkadot-sdk i…
…nto HEAD
command-bot committedOct 22, 2024 Configuration menu - View commit details
-
Copy full SHA for 2e4537e - Browse repository at this point
Copy the full SHA 2e4537eView commit details -
".git/.scripts/commands/bench/bench.sh" --subcommand=pallet --runtime…
…=westend --target_dir=polkadot --pallet=pallet_balances
command-bot committedOct 22, 2024 Configuration menu - View commit details
-
Copy full SHA for c9d4dc8 - Browse repository at this point
Copy the full SHA c9d4dc8View commit details -
".git/.scripts/commands/bench/bench.sh" --subcommand=pallet --runtime…
…=westend --target_dir=polkadot --pallet=pallet_balances --machine=y
command-bot committedOct 22, 2024 Configuration menu - View commit details
-
Copy full SHA for 237128b - Browse repository at this point
Copy the full SHA 237128bView commit details
Commits on Oct 25, 2024
-
Configuration menu - View commit details
-
Copy full SHA for 7ba35b4 - Browse repository at this point
Copy the full SHA 7ba35b4View commit details -
[pallet-revive] fix fixture build path (paritytech#6174)
Co-authored-by: GitHub Action <[email protected]> Co-authored-by: Cyrill Leutwiler <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 19f228c - Browse repository at this point
Copy the full SHA 19f228cView commit details -
fatxpool
:LocalTransactionPool
implemented (paritytech#6104)[`LocalTransactionPool` trait](https://github.com/paritytech/polkadot-sdk/blob/d5b96e9e7f24adc1799f8e426c5cb69b4f2dbf8a/substrate/client/transaction-pool/api/src/lib.rs#L408-L426) is now implemented for `ForkAwareTransactionPool`. Closes paritytech#5493
Configuration menu - View commit details
-
Copy full SHA for dc818ce - Browse repository at this point
Copy the full SHA dc818ceView commit details -
Use bool::then instead of then_some with function calls (paritytech#6156
) I noticed that hardware benchmarks are being run even though we pass the --no-hardware-benchmarks cli flag. After some debugging, the cause is an incorrect usage of the `then_some` method. From [std docs](https://doc.rust-lang.org/std/primitive.bool.html#method.then_some): > Arguments passed to then_some are eagerly evaluated; if you are passing the result of a function call, it is recommended to use [then](https://doc.rust-lang.org/std/primitive.bool.html#method.then), which is lazily evaluated. ```rust let mut a = 0; let mut function_with_side_effects = || { a += 1; }; true.then_some(function_with_side_effects()); false.then_some(function_with_side_effects()); // `a` is incremented twice because the value passed to `then_some` is // evaluated eagerly. assert_eq!(a, 2); ``` This PR fixes all the similar usages of the `then_some` method across the codebase. polkadot address: 138eUqXvUYT3o4GdbnWQfGRzM8yDWh5Q2eFrFULL7RAXzdWD --------- Signed-off-by: Oliver Tale-Yazdi <[email protected]> Co-authored-by: Shawn Tabrizi <[email protected]> Co-authored-by: Oliver Tale-Yazdi <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 474a268 - Browse repository at this point
Copy the full SHA 474a268View commit details -
Assets in pool with native can be used in
query_weight_to_asset_fee
(……paritytech#6080) A follow-up to paritytech#5599. Assets in a pool with the native one are returned from `query_acceptable_payment_assets`. Now those assets can be used in `query_weight_to_asset_fee` to get the correct amount that needs to be paid. --------- Co-authored-by: command-bot <>
Configuration menu - View commit details
-
Copy full SHA for 17b6bb7 - Browse repository at this point
Copy the full SHA 17b6bb7View commit details -
[pallet-revive] Add pallet to AH westend (paritytech#5502)
Add pallet-revive to Westend runtime, and configure the runtime to accept Ethereum signed transaction
Configuration menu - View commit details
-
Copy full SHA for ef28940 - Browse repository at this point
Copy the full SHA ef28940View commit details -
Polkadot OmniNode Docs (paritytech#6094)
provides low-level documentation on how the omni-node is meant to work. This is meant to act as reusable material for other teams (e.g. Papermoon and W3F) to use and integrate into the high level Polkadot documentation. Broadly speaking, for omni-node to have great rust-docs, we need to focus on the following crates, all of which got a bit of love in this PR: 1. `sp-genesis-builder` 2. `polkadot-omni-node` 3. `polkadot-omni-node-lib` 4. `frame-omni-bencher` On top of this, we have now: * `polkadot_sdk_docs::guides` contains two new steps demonstrating the most basic version of composing your pallet, putting it into a runtime, and putting that runtime into omni-node * `polkadot_sdk_docs::reference_docs::omni_node` to explain in more detail how omni-node differs from the old-school node. * `polkadot_sdk_docs::reference_docs::frame_weight_benchmarking` to finally have a minimal reference about weights and benchmarking. * It provides tests for some of the steps in paritytech#5568 closes paritytech#5568 closes paritytech#4781 Next steps - [x] Ensure the README of the parachain template is up-to-date. @iulianbarbu - [ ] Readme for `polkadot-omni-node` and similar is updated. For now, use `cargo-readme` and copy over the rust-docs. To build the branch locally and run this: https://paritytech.github.io/polkadot-sdk/master/polkadot_sdk_docs/meta_contributing/index.html#how-to-develop-locally --------- Co-authored-by: Iulian Barbu <[email protected]> Co-authored-by: Sebastian Kunert <[email protected]> Co-authored-by: Michal Kucharczyk <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for ee69228 - Browse repository at this point
Copy the full SHA ee69228View commit details -
Fix
zombienet-bridges-0001-asset-transfer-works
(paritytech#6175)Closes paritytech#6161 Westend BridgeHub freezes for a while at block 3 and if we try to init the bridge and fund the accounts during that time, it fails. So we wait untill all the parachains produced at least 10 blocks, in order to make sure that they work reliably.
Configuration menu - View commit details
-
Copy full SHA for 3adb0af - Browse repository at this point
Copy the full SHA 3adb0afView commit details -
[pallet-revive] fix hardcoded gas in tests (paritytech#6192)
Fix hardcoded gas limits in tests --------- Co-authored-by: GitHub Action <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 2d0353d - Browse repository at this point
Copy the full SHA 2d0353dView commit details -
Added Trusted Query API implementation for Westend and Rococo relay c…
…hains (paritytech#6212) Added missing API methods to Rococo and Westend parachains. Preparatory work for making chopstick tests run smoothly. Follow-up of [PR#6039](paritytech#6039)
Configuration menu - View commit details
-
Copy full SHA for 551c2b9 - Browse repository at this point
Copy the full SHA 551c2b9View commit details -
Snowbridge: PNA Audit Better Documentation and minor Refactorings (pa…
…ritytech#6216) # Description Snowbridge PNA has been audited. A number of issues where raised due to not understanding the fee model for Polkadot Native Assets(PNA) implementation. This PR addresses this by adding more comments and better naming of private functions. ## Integration None, documentation and private method name changes.
Configuration menu - View commit details
-
Copy full SHA for 9bcaaef - Browse repository at this point
Copy the full SHA 9bcaaefView commit details -
Enable approval-voting-parallel by default on kusama (paritytech#6218)
The approval-voting-parallel introduced with paritytech#4849 has been tested on `versi` and approximately 3 weeks on parity's existing kusama nodes paritytech/devops#3583, things worked as expected, so enable it by default on all kusama nodes in the next release. The next step will be enabling by default on polkadot if no issue arrises while running on kusama. --------- Signed-off-by: Alexandru Gheorghe <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for d491803 - Browse repository at this point
Copy the full SHA d491803View commit details -
pallet macro: Support instantiable pallets in tasks (paritytech#5194)
Fix paritytech#5185 also implement handling of attr in expansion in construct-runtime --------- Co-authored-by: Oliver Tale-Yazdi <[email protected]> Co-authored-by: Bastian Köcher <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 38bcb5d - Browse repository at this point
Copy the full SHA 38bcb5dView commit details -
Disable tests reported in paritytech#6062 (paritytech#6064)
Flaky tests reported in paritytech#6062 paritytech#6063 (already fixed) Thx!
Configuration menu - View commit details
-
Copy full SHA for edc7260 - Browse repository at this point
Copy the full SHA edc7260View commit details -
Fix a tiny typo (paritytech#6229)
Just fix a tiny typo
Configuration menu - View commit details
-
Copy full SHA for 7bbb596 - Browse repository at this point
Copy the full SHA 7bbb596View commit details -
pallet-message-queue: Fix max message size calculation (paritytech#6205)
The max size of a message should not depend on the weight left in a given execution context. Instead the max message size depends on the service weights configured for the pallet. A message that may does not fit into `on_idle` is not automatically overweight, because it may can be executed successfully in `on_initialize` or in another block in `on_idle` when there is more weight left. --------- Co-authored-by: GitHub Action <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for d146c60 - Browse repository at this point
Copy the full SHA d146c60View commit details -
Configuration menu - View commit details
-
Copy full SHA for faed618 - Browse repository at this point
Copy the full SHA faed618View commit details -
Configuration menu - View commit details
-
Copy full SHA for 2443f92 - Browse repository at this point
Copy the full SHA 2443f92View commit details -
Configuration menu - View commit details
-
Copy full SHA for 10ea752 - Browse repository at this point
Copy the full SHA 10ea752View commit details -
[pallet-revive] fix fixture build path (paritytech#6174)
Co-authored-by: GitHub Action <[email protected]> Co-authored-by: Cyrill Leutwiler <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 5fa7e6d - Browse repository at this point
Copy the full SHA 5fa7e6dView commit details -
fatxpool
:LocalTransactionPool
implemented (paritytech#6104)[`LocalTransactionPool` trait](https://github.com/paritytech/polkadot-sdk/blob/d5b96e9e7f24adc1799f8e426c5cb69b4f2dbf8a/substrate/client/transaction-pool/api/src/lib.rs#L408-L426) is now implemented for `ForkAwareTransactionPool`. Closes paritytech#5493
Configuration menu - View commit details
-
Copy full SHA for f062a95 - Browse repository at this point
Copy the full SHA f062a95View commit details -
Use bool::then instead of then_some with function calls (paritytech#6156
) I noticed that hardware benchmarks are being run even though we pass the --no-hardware-benchmarks cli flag. After some debugging, the cause is an incorrect usage of the `then_some` method. From [std docs](https://doc.rust-lang.org/std/primitive.bool.html#method.then_some): > Arguments passed to then_some are eagerly evaluated; if you are passing the result of a function call, it is recommended to use [then](https://doc.rust-lang.org/std/primitive.bool.html#method.then), which is lazily evaluated. ```rust let mut a = 0; let mut function_with_side_effects = || { a += 1; }; true.then_some(function_with_side_effects()); false.then_some(function_with_side_effects()); // `a` is incremented twice because the value passed to `then_some` is // evaluated eagerly. assert_eq!(a, 2); ``` This PR fixes all the similar usages of the `then_some` method across the codebase. polkadot address: 138eUqXvUYT3o4GdbnWQfGRzM8yDWh5Q2eFrFULL7RAXzdWD --------- Signed-off-by: Oliver Tale-Yazdi <[email protected]> Co-authored-by: Shawn Tabrizi <[email protected]> Co-authored-by: Oliver Tale-Yazdi <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for cce0c65 - Browse repository at this point
Copy the full SHA cce0c65View commit details -
Assets in pool with native can be used in
query_weight_to_asset_fee
(……paritytech#6080) A follow-up to paritytech#5599. Assets in a pool with the native one are returned from `query_acceptable_payment_assets`. Now those assets can be used in `query_weight_to_asset_fee` to get the correct amount that needs to be paid. --------- Co-authored-by: command-bot <>
Configuration menu - View commit details
-
Copy full SHA for 6fd4887 - Browse repository at this point
Copy the full SHA 6fd4887View commit details -
[pallet-revive] Add pallet to AH westend (paritytech#5502)
Add pallet-revive to Westend runtime, and configure the runtime to accept Ethereum signed transaction
Configuration menu - View commit details
-
Copy full SHA for 0e4a384 - Browse repository at this point
Copy the full SHA 0e4a384View commit details -
Polkadot OmniNode Docs (paritytech#6094)
provides low-level documentation on how the omni-node is meant to work. This is meant to act as reusable material for other teams (e.g. Papermoon and W3F) to use and integrate into the high level Polkadot documentation. Broadly speaking, for omni-node to have great rust-docs, we need to focus on the following crates, all of which got a bit of love in this PR: 1. `sp-genesis-builder` 2. `polkadot-omni-node` 3. `polkadot-omni-node-lib` 4. `frame-omni-bencher` On top of this, we have now: * `polkadot_sdk_docs::guides` contains two new steps demonstrating the most basic version of composing your pallet, putting it into a runtime, and putting that runtime into omni-node * `polkadot_sdk_docs::reference_docs::omni_node` to explain in more detail how omni-node differs from the old-school node. * `polkadot_sdk_docs::reference_docs::frame_weight_benchmarking` to finally have a minimal reference about weights and benchmarking. * It provides tests for some of the steps in paritytech#5568 closes paritytech#5568 closes paritytech#4781 Next steps - [x] Ensure the README of the parachain template is up-to-date. @iulianbarbu - [ ] Readme for `polkadot-omni-node` and similar is updated. For now, use `cargo-readme` and copy over the rust-docs. To build the branch locally and run this: https://paritytech.github.io/polkadot-sdk/master/polkadot_sdk_docs/meta_contributing/index.html#how-to-develop-locally --------- Co-authored-by: Iulian Barbu <[email protected]> Co-authored-by: Sebastian Kunert <[email protected]> Co-authored-by: Michal Kucharczyk <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for cd467be - Browse repository at this point
Copy the full SHA cd467beView commit details -
Fix
zombienet-bridges-0001-asset-transfer-works
(paritytech#6175)Closes paritytech#6161 Westend BridgeHub freezes for a while at block 3 and if we try to init the bridge and fund the accounts during that time, it fails. So we wait untill all the parachains produced at least 10 blocks, in order to make sure that they work reliably.
Configuration menu - View commit details
-
Copy full SHA for 8c7d4e4 - Browse repository at this point
Copy the full SHA 8c7d4e4View commit details -
[pallet-revive] fix hardcoded gas in tests (paritytech#6192)
Fix hardcoded gas limits in tests --------- Co-authored-by: GitHub Action <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 88adf74 - Browse repository at this point
Copy the full SHA 88adf74View commit details -
Added Trusted Query API implementation for Westend and Rococo relay c…
…hains (paritytech#6212) Added missing API methods to Rococo and Westend parachains. Preparatory work for making chopstick tests run smoothly. Follow-up of [PR#6039](paritytech#6039)
Configuration menu - View commit details
-
Copy full SHA for ab0e533 - Browse repository at this point
Copy the full SHA ab0e533View commit details -
Snowbridge: PNA Audit Better Documentation and minor Refactorings (pa…
…ritytech#6216) # Description Snowbridge PNA has been audited. A number of issues where raised due to not understanding the fee model for Polkadot Native Assets(PNA) implementation. This PR addresses this by adding more comments and better naming of private functions. ## Integration None, documentation and private method name changes.
Configuration menu - View commit details
-
Copy full SHA for fb95df1 - Browse repository at this point
Copy the full SHA fb95df1View commit details -
Enable approval-voting-parallel by default on kusama (paritytech#6218)
The approval-voting-parallel introduced with paritytech#4849 has been tested on `versi` and approximately 3 weeks on parity's existing kusama nodes paritytech/devops#3583, things worked as expected, so enable it by default on all kusama nodes in the next release. The next step will be enabling by default on polkadot if no issue arrises while running on kusama. --------- Signed-off-by: Alexandru Gheorghe <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 9e38631 - Browse repository at this point
Copy the full SHA 9e38631View commit details -
pallet macro: Support instantiable pallets in tasks (paritytech#5194)
Fix paritytech#5185 also implement handling of attr in expansion in construct-runtime --------- Co-authored-by: Oliver Tale-Yazdi <[email protected]> Co-authored-by: Bastian Köcher <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 04eab7d - Browse repository at this point
Copy the full SHA 04eab7dView commit details -
Disable tests reported in paritytech#6062 (paritytech#6064)
Flaky tests reported in paritytech#6062 paritytech#6063 (already fixed) Thx!
Configuration menu - View commit details
-
Copy full SHA for 3e11963 - Browse repository at this point
Copy the full SHA 3e11963View commit details -
Fix a tiny typo (paritytech#6229)
Just fix a tiny typo
Configuration menu - View commit details
-
Copy full SHA for 916f053 - Browse repository at this point
Copy the full SHA 916f053View commit details -
pallet-message-queue: Fix max message size calculation (paritytech#6205)
The max size of a message should not depend on the weight left in a given execution context. Instead the max message size depends on the service weights configured for the pallet. A message that may does not fit into `on_idle` is not automatically overweight, because it may can be executed successfully in `on_initialize` or in another block in `on_idle` when there is more weight left. --------- Co-authored-by: GitHub Action <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 9702278 - Browse repository at this point
Copy the full SHA 9702278View commit details -
Configuration menu - View commit details
-
Copy full SHA for e18335d - Browse repository at this point
Copy the full SHA e18335dView commit details -
Configuration menu - View commit details
-
Copy full SHA for 695b8cc - Browse repository at this point
Copy the full SHA 695b8ccView commit details -
Configuration menu - View commit details
-
Copy full SHA for 3ccada6 - Browse repository at this point
Copy the full SHA 3ccada6View commit details -
[pallet-revive] fix fixture build path (paritytech#6174)
Co-authored-by: GitHub Action <[email protected]> Co-authored-by: Cyrill Leutwiler <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 5a19cd0 - Browse repository at this point
Copy the full SHA 5a19cd0View commit details -
fatxpool
:LocalTransactionPool
implemented (paritytech#6104)[`LocalTransactionPool` trait](https://github.com/paritytech/polkadot-sdk/blob/d5b96e9e7f24adc1799f8e426c5cb69b4f2dbf8a/substrate/client/transaction-pool/api/src/lib.rs#L408-L426) is now implemented for `ForkAwareTransactionPool`. Closes paritytech#5493
Configuration menu - View commit details
-
Copy full SHA for 0c0f57d - Browse repository at this point
Copy the full SHA 0c0f57dView commit details -
Use bool::then instead of then_some with function calls (paritytech#6156
) I noticed that hardware benchmarks are being run even though we pass the --no-hardware-benchmarks cli flag. After some debugging, the cause is an incorrect usage of the `then_some` method. From [std docs](https://doc.rust-lang.org/std/primitive.bool.html#method.then_some): > Arguments passed to then_some are eagerly evaluated; if you are passing the result of a function call, it is recommended to use [then](https://doc.rust-lang.org/std/primitive.bool.html#method.then), which is lazily evaluated. ```rust let mut a = 0; let mut function_with_side_effects = || { a += 1; }; true.then_some(function_with_side_effects()); false.then_some(function_with_side_effects()); // `a` is incremented twice because the value passed to `then_some` is // evaluated eagerly. assert_eq!(a, 2); ``` This PR fixes all the similar usages of the `then_some` method across the codebase. polkadot address: 138eUqXvUYT3o4GdbnWQfGRzM8yDWh5Q2eFrFULL7RAXzdWD --------- Signed-off-by: Oliver Tale-Yazdi <[email protected]> Co-authored-by: Shawn Tabrizi <[email protected]> Co-authored-by: Oliver Tale-Yazdi <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for af2184b - Browse repository at this point
Copy the full SHA af2184bView commit details -
Assets in pool with native can be used in
query_weight_to_asset_fee
(……paritytech#6080) A follow-up to paritytech#5599. Assets in a pool with the native one are returned from `query_acceptable_payment_assets`. Now those assets can be used in `query_weight_to_asset_fee` to get the correct amount that needs to be paid. --------- Co-authored-by: command-bot <>
Configuration menu - View commit details
-
Copy full SHA for 945f079 - Browse repository at this point
Copy the full SHA 945f079View commit details -
[pallet-revive] Add pallet to AH westend (paritytech#5502)
Add pallet-revive to Westend runtime, and configure the runtime to accept Ethereum signed transaction
Configuration menu - View commit details
-
Copy full SHA for d01e3ca - Browse repository at this point
Copy the full SHA d01e3caView commit details -
Polkadot OmniNode Docs (paritytech#6094)
provides low-level documentation on how the omni-node is meant to work. This is meant to act as reusable material for other teams (e.g. Papermoon and W3F) to use and integrate into the high level Polkadot documentation. Broadly speaking, for omni-node to have great rust-docs, we need to focus on the following crates, all of which got a bit of love in this PR: 1. `sp-genesis-builder` 2. `polkadot-omni-node` 3. `polkadot-omni-node-lib` 4. `frame-omni-bencher` On top of this, we have now: * `polkadot_sdk_docs::guides` contains two new steps demonstrating the most basic version of composing your pallet, putting it into a runtime, and putting that runtime into omni-node * `polkadot_sdk_docs::reference_docs::omni_node` to explain in more detail how omni-node differs from the old-school node. * `polkadot_sdk_docs::reference_docs::frame_weight_benchmarking` to finally have a minimal reference about weights and benchmarking. * It provides tests for some of the steps in paritytech#5568 closes paritytech#5568 closes paritytech#4781 Next steps - [x] Ensure the README of the parachain template is up-to-date. @iulianbarbu - [ ] Readme for `polkadot-omni-node` and similar is updated. For now, use `cargo-readme` and copy over the rust-docs. To build the branch locally and run this: https://paritytech.github.io/polkadot-sdk/master/polkadot_sdk_docs/meta_contributing/index.html#how-to-develop-locally --------- Co-authored-by: Iulian Barbu <[email protected]> Co-authored-by: Sebastian Kunert <[email protected]> Co-authored-by: Michal Kucharczyk <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for dcf0c9f - Browse repository at this point
Copy the full SHA dcf0c9fView commit details -
Fix
zombienet-bridges-0001-asset-transfer-works
(paritytech#6175)Closes paritytech#6161 Westend BridgeHub freezes for a while at block 3 and if we try to init the bridge and fund the accounts during that time, it fails. So we wait untill all the parachains produced at least 10 blocks, in order to make sure that they work reliably.
Configuration menu - View commit details
-
Copy full SHA for 427a279 - Browse repository at this point
Copy the full SHA 427a279View commit details -
[pallet-revive] fix hardcoded gas in tests (paritytech#6192)
Fix hardcoded gas limits in tests --------- Co-authored-by: GitHub Action <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 5e7dab0 - Browse repository at this point
Copy the full SHA 5e7dab0View commit details -
Added Trusted Query API implementation for Westend and Rococo relay c…
…hains (paritytech#6212) Added missing API methods to Rococo and Westend parachains. Preparatory work for making chopstick tests run smoothly. Follow-up of [PR#6039](paritytech#6039)
Configuration menu - View commit details
-
Copy full SHA for f3db492 - Browse repository at this point
Copy the full SHA f3db492View commit details -
Snowbridge: PNA Audit Better Documentation and minor Refactorings (pa…
…ritytech#6216) # Description Snowbridge PNA has been audited. A number of issues where raised due to not understanding the fee model for Polkadot Native Assets(PNA) implementation. This PR addresses this by adding more comments and better naming of private functions. ## Integration None, documentation and private method name changes.
Configuration menu - View commit details
-
Copy full SHA for 90b450d - Browse repository at this point
Copy the full SHA 90b450dView commit details -
Enable approval-voting-parallel by default on kusama (paritytech#6218)
The approval-voting-parallel introduced with paritytech#4849 has been tested on `versi` and approximately 3 weeks on parity's existing kusama nodes paritytech/devops#3583, things worked as expected, so enable it by default on all kusama nodes in the next release. The next step will be enabling by default on polkadot if no issue arrises while running on kusama. --------- Signed-off-by: Alexandru Gheorghe <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for ed9ada1 - Browse repository at this point
Copy the full SHA ed9ada1View commit details -
pallet macro: Support instantiable pallets in tasks (paritytech#5194)
Fix paritytech#5185 also implement handling of attr in expansion in construct-runtime --------- Co-authored-by: Oliver Tale-Yazdi <[email protected]> Co-authored-by: Bastian Köcher <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for defd401 - Browse repository at this point
Copy the full SHA defd401View commit details -
Disable tests reported in paritytech#6062 (paritytech#6064)
Flaky tests reported in paritytech#6062 paritytech#6063 (already fixed) Thx!
Configuration menu - View commit details
-
Copy full SHA for 07e78a1 - Browse repository at this point
Copy the full SHA 07e78a1View commit details -
Fix a tiny typo (paritytech#6229)
Just fix a tiny typo
Configuration menu - View commit details
-
Copy full SHA for 3f49839 - Browse repository at this point
Copy the full SHA 3f49839View commit details -
pallet-message-queue: Fix max message size calculation (paritytech#6205)
The max size of a message should not depend on the weight left in a given execution context. Instead the max message size depends on the service weights configured for the pallet. A message that may does not fit into `on_idle` is not automatically overweight, because it may can be executed successfully in `on_initialize` or in another block in `on_idle` when there is more weight left. --------- Co-authored-by: GitHub Action <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 724a2f2 - Browse repository at this point
Copy the full SHA 724a2f2View commit details
Commits on Oct 26, 2024
-
Configuration menu - View commit details
-
Copy full SHA for 75b6b53 - Browse repository at this point
Copy the full SHA 75b6b53View commit details
Commits on Oct 27, 2024
-
Update from mordamax running command 'bench --runtime westend --palle…
…t pallet_balances --clean'
Configuration menu - View commit details
-
Copy full SHA for 6628bc5 - Browse repository at this point
Copy the full SHA 6628bc5View commit details