- Jun 11, 2021
-
-
Bastian Köcher authored
* Companion for Substrate#9082 * update Substrate Co-authored-by: parity-processbot <>
-
dependabot[bot] authored
Bumps [pin-project](https://github.com/taiki-e/pin-project) from 1.0.4 to 1.0.7. - [Release notes](https://github.com/taiki-e/pin-project/releases) - [Changelog](https://github.com/taiki-e/pin-project/blob/main/CHANGELOG.md) - [Commits](https://github.com/taiki-e/pin-project/compare/v1.0.4...v1.0.7) --- updated-dependencies: - dependency-name: pin-project 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>
-
Bernhard Schuster authored
Moves tests into separate files in order to limit the loc per file.
-
- Jun 09, 2021
-
-
dependabot[bot] authored
Bumps [futures](https://github.com/rust-lang/futures-rs) from 0.3.14 to 0.3.15. - [Release notes](https://github.com/rust-lang/futures-rs/releases) - [Changelog](https://github.com/rust-lang/futures-rs/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/futures-rs/compare/0.3.14...0.3.15) --- updated-dependencies: - dependency-name: futures 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>
-
Xiliang Chen authored
-
ordian authored
* remove tracing::intrument annotations * remove unused param and leftover * more leftovers
-
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
-
-
Bastian Köcher authored
* polkadot-service: Make native runtime configurable This pull requests adds support for configuring the native runtimes used by polkadot-service. While this whole pr doesn't change that much for polkadot, besides not having the light-node enabled for the default polkadot binary. However, downstream projects (parachains) will have a much better compile time. In cumulus for example the `cargo test --all --release` is about 4m faster to compile. * Fixes * Fix * Enable rococo-native * Fix light client *
🤦 * Fixes -
Lldenaurois authored
* Create validator_side module * Subsume Candidate Selection * Add test to ensure candidate backing logic is correct * Ensure secondings are adequately cleaned up and address test flakyness * Address Feedback
-
Niklas Adolfsson authored
* deps: cargo update -p rustls * fix build * update Substrate Co-authored-by: parity-processbot <>
-
- Jun 07, 2021
-
-
André Silva authored
* node: fix grandpa voting rule * node: cleanup find_target
-
- Jun 04, 2021
-
-
André Silva authored
* node: fix babe worker params * update Substrate Co-authored-by: parity-processbot <>
-
asynchronous rob authored
-
ordian authored
* approval-distribution: send all messages on unify * update the guide
-
asynchronous rob authored
-
asynchronous rob authored
* put a cap on finality lag * Update node/service/src/grandpa_support.rs Co-authored-by: André Silva <[email protected]> * apply lag to best, not to current vote Co-authored-by: André Silva <[email protected]>
-
Arkadiy Paronyan authored
* Update for the new substrate client API * update Substrate Co-authored-by: parity-processbot <>
-
- Jun 03, 2021
-
-
Martin Pugh authored
* bump version, substrate, beefy * bump substrate
-
ordian authored
* remove duplicate logging * validator-discovery: add extra logging
-
Gavin Wood authored
* Stuff to help inspect the DMP activity * Fix teleport accounting * Fixes * Fixes * Fixes * Fixes
-
- Jun 01, 2021
-
-
Sergey Pepyakin authored
* Companion for PR 8913 polkadot companion: https://github.com/paritytech/substrate/pull/8913 * update Substrate Co-authored-by: parity-processbot <>
-
Robert Klotzner authored
-
- May 31, 2021
-
-
asynchronous rob authored
* guide: reversion safety * guide: manage reversion safety in subsystems * add leaf status to ActivatedLeaf * add an LRU-cache to overseer for staleness detection * update ActivatedLeaf usages in tests to contain status field * add variant where missed accidentally * add some helpers to LeafStatus * address grumbles
-
asynchronous rob authored
* fix approval-checking GRANDPA voting rule a `None` return value implies to vote on the best, not to vote on the base. this explicitly changes the logic to vote on the base * refactor logic out and test
-
- May 28, 2021
-
-
Bastian Köcher authored
* Use proper host configuration everywhere * Fix dumb errors
-
Xiliang Chen authored
* enable Config for Paras * fix
-
- May 27, 2021
-
-
Roman Proskuryakov authored
* Replace NetworkStatusSinks with Arc<NetworkService> * update Substrate Co-authored-by: parity-processbot <>
-
dependabot[bot] authored
Bumps [tracing](https://github.com/tokio-rs/tracing) from 0.1.25 to 0.1.26. - [Release notes](https://github.com/tokio-rs/tracing/releases) - [Commits](https://github.com/tokio-rs/tracing/compare/tracing-0.1.25...tracing-0.1.26) Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
-
- May 26, 2021
-
-
André Silva authored
* grandpa: enable observer for light client * update Substrate * service: fix missing import * runtime: bump spec versions Co-authored-by: parity-processbot <>
-
Bastian Köcher authored
* Add `UsageProvider` trait to `AbstractClient` * Fix
-
- May 25, 2021
-
-
ordian authored
* validator_discovery: small tweak in retrying logic * validator_discovery: use timeouts instead
-
Bastian Köcher authored
* Introduce polkadot code substitute This introduces a code substitute for the on-chain wasm of Polkadot from block `0x86aa36a140dfc449c30dbce16ce0fea33d5c3786766baa764e33f336841b9e29` on wards. The underlying problem was that there exists some miscompilation by the rust compiler in the wasm runtime that results in state mismatches between the native/wasm runtime of the the 0.8.30 release. This resulted in blocks being authored by the native runtime not being importable by nodes using the wasm runtime. The on-chain wasm is replaced by a wasm build from the 0.8.30 using the rustc nightly from 1.03.2021. * update the wasm substitute blob * update Substrate Co-authored-by: André Silva <[email protected]> Co-authored-by: parity-processbot <>
-
- May 24, 2021
-
-
Martin Pugh authored
-
asynchronous rob authored
-
- May 22, 2021
-
-
asynchronous rob authored
* log validator index when importing statement * log validation failures in debug
-
ordian authored
* network-bridge: downgrade log level of benefit rep change * remove it as we log it at higher level
-
Bernhard Schuster 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]>
-
Pierre Krieger authored
-
Sergey Pepyakin authored
* Put WIP artifacts next to ready ones Fixes #3044 * Apply suggestions from code review Co-authored-by: Bastian Köcher <[email protected]> Co-authored-by: Bastian Köcher <[email protected]>
-