-
Notifications
You must be signed in to change notification settings - Fork 1.6k
Conversation
This brings new features like compressed runtimes out of the box.
We probably also want to bump up the 2 dependencies under |
Feel free to open a PR in the bridges repo with this change. All our Substrate dependencies are Git based anyways, so I don't think this will be an issue |
TestsI tested the build of a few runtimes:
The tests are run with NOTE: I skipped the bridges tests as the code is not current (Millau failed here but the issue is fixed in the bridges repo). |
let blob = prevalidate(code)?; | ||
let code = sp_maybe_compressed_blob::decompress(code, 10 * 1024 * 1024).expect("Decompressing code failed"); | ||
|
||
let blob = prevalidate(&*code)?; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Do we need this explicit deref ?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
One nit, not sure if it's worth to address
Co-authored-by: Sergei Shulepov <sergei@parity.io>
* chore: update the wasm builder to substrate master * Bump Substrate * Update weight of sending remarks ref paritytech/polkadot#3354 Co-authored-by: Hernando Castano <hernando@hcastano.com>
* master: (21 commits) cleanup stream polls (#3397) Staking Miner (#3141) Companion for Substrate#8953 (#3140) Bump version, specs & substrate in prep for v0.9.8 (#3387) Fix busy loops. (#3392) Minor refactor (#3386) add simnet tests (#3381) BEEFY: adjust gossip (#3372) Companion for #9193 (#3376) Companion for Decouple Staking and Election - Part 3: Signed Phase (#2793) Ensure that we fetch another collation if the first collation was invalid (#3362) Only send one collation per relay parent at a time to validators (#3360) disable approval-checking-grandpa on dev chain (#3364) Use associated constant for max (#3375) Use wasm-builder from git (#3354) Squashed 'bridges/' changes from b2099c5..23dda62 (#3369) Bump versions & spec_versions (#3368) Don't allow bids for a ParaId where there is an overlapping lease period (#3361) Companion for upgrade of transaction-payment to pallet macro (#3267) Do not allow any crowdloan contributions during the VRF period (#3346) ...
This brings new features like compressed runtimes out of the box.