- Jul 09, 2021
-
-
Kian Paimani authored
* Fix weights * try something to unbreak companion * update Substrate Co-authored-by: Andronik Ordian <[email protected]> Co-authored-by: parity-processbot <>
-
- Jul 08, 2021
-
-
Lldenaurois authored
* node/approval-voting: Introduce Backend trait and Overlaybackend This commit introduces a Backend trait and attempts to move away from the Action model via an OverlayBackend as in the ChainSelection subsystem. * node/approval-voting: Add WriteOps for StoredBlockRange and BlocksAtHeight * node/approval-voting: Add load_all_blocks to overlay * node/approval-voting: Get all module tests to pass. This commit modifies all tests to ensure tests are passing. * node/approval-voting: Address oversights in the previous commit This commit addresses some oversights in the prior commit. 1. Inner errors in backend.write were swallowed 2. One-off write functions removed to avoid useless abstraction 3. Touch-ups in general * node/approval-voting: Move from TestDB to dyn KeyValueDB This commit removes the TestDB from tests.rs and replaces it with an in-memory kvdb. * node/approval-voting: Address feedback * node/approval-voting: Add license to ops.rs * node/approval-voting: Address second-pass feedback * Add TODO * node/approval-voting: Bump spec_version * node/approval-voting: Address final comments.
-
- Jul 07, 2021
-
-
Shawn Tabrizi authored
* update benchmark * add host function * update Substrate * fix unused Co-authored-by: parity-processbot <>
-
ferrell-code authored
* migrate to FrameV2 * kusama & westend change pallet name * keep item private Co-authored-by: Guillaume Thiolliere <[email protected]>
-
- Jul 06, 2021
-
-
ferrell-code authored
* to v2 macro * line width * fix mock * actually compile moxk * compile tests * add hooks * origin back in mocks * assimilate_storage * add generic * maybe mock compiles now * origin between parachain and system causing problem * change origin * type alias as origin * keep origin * add aliases to tests * remove unnecessary imports * Parachain -> Paras * paras test * nvm * use genesis build in mock
-
- Jul 05, 2021
-
-
Igor Matuszewski authored
* Use MaxEncodedLen trait from new parity-scale-codec v2.2 * update Substrate Co-authored-by: parity-processbot <>
-
- Jul 01, 2021
-
-
Kian Paimani authored
Co-authored-by: Peter Goodspeed-Niklaus <[email protected]> Co-authored-by: Peter Goodspeed-Niklaus <[email protected]>
-
Bastian Köcher authored
* Companion * Update branch * Update to correspond to substrate fixes * Update cargo.lock * Remove patches * update Substrate Co-authored-by: parity-processbot <>
-
Martin Pugh authored
* bump version * bump substrate * bump spec_versions
-
- Jun 28, 2021
-
-
Peter Goodspeed-Niklaus authored
* Companion for Decouple Staking and Election - Part 3: Signed Phase https://github.com/paritytech/substrate/pull/7910 * remove some config types * allow up to 5 signed submissions on polkadot and kusama * signed phase is equal induration to unsigned phase * use chain defaults for base and per-byte deposits; >= 16 SignedMaxSubmissions * use a small but non-trivial solution reward * reduce signed deposit per byte fee * reduce signed reward, adjust polkadot expected soln size * copy submit benchmark from substrate * demo calculating an appropriate fee for the signed reward Unfortunately, this doesn't work: it needs to be a constant function, and AFAIK there's no way to make a trait method constant. * SignedRewardBase is 1.5x the fee to submit a signed solution * all chains use deposit byte of base per 50k * update Substrate * cargo update -p pallet-election-provider-multi-phase Co-authored-by: parity-processbot <>
-
- Jun 25, 2021
-
-
Martin Pugh authored
* bump versions & spec_versions * bump Cargo.lock
-
- Jun 22, 2021
-
-
André Silva authored
* runtime: remove randomness collective flip pallet * add storage migration to remove key Co-Authored-By: parity-processbot <> Co-authored-by: Shawn Tabrizi <[email protected]>
-
- Jun 21, 2021
-
-
Shawn Tabrizi authored
* use `configuration::config()` for max bytes * Update integration_tests.rs * Update paras_registrar.rs * remove consts * add asserts for non-zero * more const clean up * cargo run --release --features=runtime-benchmarks -- benchmark --chain=kusama-dev --steps=50 --repeat=20 --pallet=runtime_common::paras_registrar --extrinsic=* --execution=wasm --wasm-execution=compiled --heap-pages=4096 --header=./file_header.txt --output=./runtime/kusama/src/weights/runtime_common_paras_registrar.rs * cargo run --release --features=runtime-benchmarks -- benchmark --chain=westend-dev --steps=50 --repeat=20 --pallet=runtime_common::paras_registrar --extrinsic=* --execution=wasm --wasm-execution=compiled --heap-pages=4096 --header=./file_header.txt --output=./runtime/westend/src/weights/runtime_common_paras_registrar.rs * add checks to `MAX_CODE_SIZE` * re-pot MAX_POV_SIZE * check pov limit in runtime * POV_BOMB_LIMIT multiplier * fix compile * Update configuration.rs * Update node/primitives/src/lib.rs * fix test Co-authored-by: Parity Bot <[email protected]>
-
- Jun 20, 2021
-
-
ordian authored
* downgrade to debug * another thick log * bump spec versions in kusama, polkadot and westend again IV
-
- Jun 19, 2021
-
-
Andreas Doerr authored
-
- Jun 18, 2021
-
-
Kian Paimani authored
* Set staking limits * Set westend limits as well * Update runtime/kusama/src/lib.rs Co-authored-by: Gavin Wood <[email protected]> Co-authored-by: Gavin Wood <[email protected]>
-
- Jun 16, 2021
-
-
Shawn Tabrizi authored
-
Keith Yeung authored
* Remove Call part imports of the offences and authority discovery pallets * Remove non-existent Call enum variants * Move ValidateUnsigned impl to be under #[pallet::validate_unsigned] in claims pallet * Remove unused imports * Remove Call part import for randomness collective flip pallet * update Substrate Co-authored-by: parity-processbot <>
-
- Jun 14, 2021
-
-
Martin Pugh authored
* bump spec_version and version * bump substrate * remove migrations * Revert "remove migrations" This reverts commit ceeab924d1cd5c2d3d05f24ab28315f0566f89d8. * remove stale migration for kusama + westend
-
Shawn Tabrizi authored
-
thiolliere authored
* companion * update Substrate Co-authored-by: parity-processbot <>
-
Qinxuan Chen authored
* migrate pallet-randomness-collective-flip to new pallet attr macro Signed-off-by: koushiro <[email protected]> * fix some nits Signed-off-by: koushiro <[email protected]> * fix Signed-off-by: koushiro <[email protected]> * some nits Signed-off-by: koushiro <[email protected]> * update Substrate Co-authored-by: parity-processbot <>
-
- Jun 12, 2021
-
-
André Silva authored
* create newtype for ValidationCodeHash * pvf: fix tests compilation * primitives: fix test compilation
-
- Jun 11, 2021
-
-
André Silva authored
* replace HistoricalValidationCode usages with ValidationCodeByHash * runtime-api: tabify tests file * update implementers guide
-
- Jun 09, 2021
-
-
Keith Yeung authored
* Use new naming scheme for all Event enums generated by construct_runtime * Use new naming scheme for all GenesisConfig fields generated by construct_runtime * Fix overlooked GenesisConfig field renaming * update Substrate Co-authored-by: parity-processbot <>
-
- Jun 08, 2021
-
-
Martin Pugh authored
-
- Jun 04, 2021
-
-
Gavin Wood authored
* fix build * fix tests * update * fix * update * Bump Co-authored-by: Bryan Chen <[email protected]>
-
- Jun 03, 2021
-
-
Martin Pugh authored
* bump spec version * bump beefy
-
Gavin Wood authored
* Stuff to help inspect the DMP activity * Fix teleport accounting * Fixes * Fixes * Fixes * Fixes
-
- Jun 01, 2021
-
-
Alexander Popiak authored
-
- May 31, 2021
-
-
Alexander Popiak authored
-
- May 28, 2021
-
-
Shawn Tabrizi authored
* ProxyType MaxEncodedLen * import * import * fix dep and bump substrate * Update Cargo.lock
-
Xiliang Chen authored
* enable Config for Paras * fix
-
- May 26, 2021
-
-
Jon Häggblad authored
* runtime: create migrations for grandpa storage prefix * runtime: address review comments * runtime: update spec_version * westend: fix incorrect merge * runtime: change to v3.1 from v4 for grandpa migrations * cargo.lock: manually specify pallet-grandpa in lock file * cargo.lock: fix typo * update substrate * update substrate Co-authored-by: André Silva <[email protected]>
-
André Silva authored
* grandpa: enable observer for light client * update Substrate * service: fix missing import * runtime: bump spec versions Co-authored-by: parity-processbot <>
-
Kian Paimani authored
* add stuff * Update runtime/polkadot/src/lib.rs * Update runtime/kusama/src/lib.rs * update Substrate Co-authored-by: parity-processbot <>
-
- May 22, 2021
-
-
Shawn Tabrizi authored
-
- May 21, 2021
-
-
Robert Klotzner authored
* State can be finished due to `Share` message. Therefoe a task can still be running in that state. Removed panic and changed state name to reflect possibility of `Share` message. * bump spec versions in kusama, polkadot and westend again III * properly bump for the upcoming release Co-authored-by: Andronik Ordian <[email protected]>
-
- May 20, 2021
-
-
Shawn Tabrizi authored
-
- May 18, 2021
-
-
Martin Pugh authored
* bump version & spec version * update Cargo.lock * bump substrate
-