Marcin S
d4e3501ec2
Make some fixes to logging in PVF subsystem ( #6180 )
...
* Log exit status code for workers
* Make log for execute job conclusion match prepare job conclusion
Trace log for conclusion of prepare job:
```rs
gum::debug!(
target: LOG_TARGET,
validation_code_hash = ?artifact_id.code_hash,
?worker,
?rip,
"prepare worker concluded",
);
```
Co-authored-by: parity-processbot <>
2022-10-26 17:49:51 +02:00
令狐一冲
6cc497e220
Fix error during build: failed to run custom build command for sc-network-bitswap ( #12494 )
2022-10-26 08:43:48 +00:00
Shawn Tabrizi
6ec86b215a
Companion for #12457 (Bounded Multisig) ( #1793 )
...
* u16 -> u32
* update lockfile for {"polkadot", "substrate"}
Co-authored-by: parity-processbot <>
2022-10-25 19:49:33 +00:00
Shawn Tabrizi
d40b31791d
Companion for #12457 (Bounded Multisig) ( #6172 )
...
* u16 -> u32
* update lockfile for {"substrate"}
Co-authored-by: parity-processbot <>
2022-10-25 19:22:29 +00:00
Shawn Tabrizi
e475638827
Make Multisig Pallet Bounded ( #12457 )
...
* Bounded multisig
* just use u32
Co-authored-by: parity-processbot <>
2022-10-25 18:34:20 +00:00
yjh
9375665218
feat: generalize some functions in sp-trie ( #12376 )
...
* feat: add to_memory_db to StorageProof
* feat: add iter method and generalize iter_nodes
* fmt
* feat: generalize `encode_compact` like `decode_compact`, add to_compact_proof to StorageProof
* fix to_compact_proof
* improve by suggestions
* improve by suggestions
Co-authored-by: Bastian Köcher <git@kchr.de >
2022-10-25 07:04:32 +00:00
dependabot[bot]
26e3da8e25
Bump assert_cmd from 2.0.4 to 2.0.5 ( #1800 )
...
Bumps [assert_cmd](https://github.com/assert-rs/assert_cmd ) from 2.0.4 to 2.0.5.
- [Release notes](https://github.com/assert-rs/assert_cmd/releases )
- [Changelog](https://github.com/assert-rs/assert_cmd/blob/master/CHANGELOG.md )
- [Commits](https://github.com/assert-rs/assert_cmd/compare/v2.0.4...v2.0.5 )
---
updated-dependencies:
- dependency-name: assert_cmd
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2022-10-25 08:43:37 +02:00
Alexander Theißen
f73f661319
contracts: Companion for offchain indeterminism ( #1794 )
...
* Adapt to new pallet contracts API
* Fix
* Fix runtime APIs
* update lockfile for {"polkadot", "substrate"}
Co-authored-by: parity-processbot <>
2022-10-24 18:12:56 +00:00
Sacha Lansky
54204d7628
Update template pallet to latest enum syntax ( #12552 )
2022-10-24 20:10:18 +02:00
Davide Galassi
6201ccaf8f
Normalize keystore type and its usage across tests ( #12553 )
...
* Normalize keystore type and usage across tests
* Extract peer index from array index
2022-10-24 17:55:25 +00:00
Alexander Theißen
3ae4be8662
contracts: Allow indeterministic instructions off-chain ( #12469 )
...
* Allow indetermistic instructions off-chain
* Apply suggestions from code review
Co-authored-by: Sasha Gryaznov <hi@agryaznov.com >
* fmt
Co-authored-by: Sasha Gryaznov <hi@agryaznov.com >
2022-10-24 17:48:04 +00:00
Keith Yeung
7ad763f9bd
Fix a few migration issues with 2D weights ( #1755 )
...
* Give a max proof size to DMP individual weight processing during migration
* Fix a few migration issues with 2D weights
* Update substrate
* Fixes
* cargo fmt
* Re-add v1 migration
* Set DEFAULT_POV_SIZE to 64 KB
* Use Weight::from_parts
* Update Polkadot
* Fixes
2022-10-24 15:03:02 +00:00
Dmitrii Markin
d0dcf008ec
Base Kademlia protocol name on genesis hash and fork ID ( #12545 )
2022-10-24 14:47:58 +03:00
Marcin S
aff57ef19d
Add missing prerequisite in README for implementers guide ( #6181 )
2022-10-24 06:56:41 +00:00
Aaro Altonen
a877b0ccec
Make NetworkService callable for ChainSync ( #12542 )
...
Introduce a middleware called `NetworkServiceProvider` which the
`ChainSync` can use to communicate with `NetworkService`. `ChainSync` is
given a `NetworkServiceHandle` which it uses to call `NetworkServiceProvider`
which then dispatches the calls to `NetworkService` on behalf of `ChainSync`.
This change will allow `ChainSync` to disconnect and report peers and
in the future it'll be possible to send requests and notifications
through the `NetworkServiceProvider`.
`NetworkServiceProvider` is needed only until the `ChainSync` object
has been removed from `Protocol`. After that, a normal `NetworkService`
handle can be passed onto `ChainSync` and these changes can be
deprecated.
Co-authored-by: parity-processbot <>
2022-10-22 12:36:26 +00:00
Boluwatife Bakre
8eb1f4617f
Use a more typesafe approach for managing indexed data ( #6150 )
...
* Fix for issue #2403
* Nightly fmt
* Quick documentation fixes
* Default Implementation
* iter() function integrated
* Implemented iter functionalities
* Fmt
* small change
* updates node-network
* updates in dispute-coordinator
* Updates
* benchmarking fix
* minor fix
* test fixes in runtime api
* Update primitives/src/v2/mod.rs
Co-authored-by: Andronik <write@reusable.software >
* Update primitives/src/v2/mod.rs
Co-authored-by: Andronik <write@reusable.software >
* Update primitives/src/v2/mod.rs
Co-authored-by: Andronik <write@reusable.software >
* Update primitives/src/v2/mod.rs
Co-authored-by: Andronik <write@reusable.software >
* Update primitives/src/v2/mod.rs
Co-authored-by: Andronik <write@reusable.software >
* Removal of [index], shorting of FromIterator, Renaming of GroupValidators to ValidatorGroups
* Removal of ops import
* documentation fixes for spell check
* implementation of generic type
* Refactoring
* Test and documentation fixes
* minor test fix
* minor test fix
* minor test fix
* Update node/network/statement-distribution/src/lib.rs
Co-authored-by: Andronik <write@reusable.software >
* Update primitives/src/v2/mod.rs
Co-authored-by: Andronik <write@reusable.software >
* Update primitives/src/v2/mod.rs
Co-authored-by: Andronik <write@reusable.software >
* removed IterMut
* Update node/core/dispute-coordinator/src/import.rs
Co-authored-by: Andronik <write@reusable.software >
* Update node/core/dispute-coordinator/src/initialized.rs
Co-authored-by: Andronik <write@reusable.software >
* Update primitives/src/v2/mod.rs
Co-authored-by: Andronik <write@reusable.software >
* fmt
* IterMut
* documentation update
Co-authored-by: Andronik <write@reusable.software >
* minor adjustments and new TypeIndex trait
* spelling fix
* TypeIndex fix
Co-authored-by: Andronik <write@reusable.software >
2022-10-22 08:39:11 +00:00
Mara Robin B
f8cc39a761
sync versions with current release (0.9.31) ( #6176 )
...
* Bump spec_version to 9310
* bump transaction_version (0.9.31) (#6171 )
* Bump transaction_version for polkadot
* Bump transaction_version for kusama
* Bump transaction_version for rococo
* Bump transaction_version for westend
* Bump transaction_version for polkadot
* Bump transaction_version for kusama
* Bump transaction_version for rococo
* Bump transaction_version for westend
* Bump crate versions (0.9.31)
2022-10-22 00:08:53 -04:00
Shawn Tabrizi
932e1a334b
use headers on templates ( #12546 )
2022-10-21 21:46:25 +00:00
Michal Kucharczyk
c0e8abe1a8
BlockId removal: refactor: Backend::begin_state_operation ( #12541 )
...
It changes the arguments of `Backend::begin_state_operation`
from: block: `BlockId<Block>` to: hash: `&Block::Hash`
This PR is part of BlockId::Number refactoring analysis (paritytech/substrate#11292 )
2022-10-21 15:05:51 +00:00
Nazar Mokrynskyi
bf57a2e92d
Actually fix major sync detection ( #12114 )
...
* Actually fix major sync detection
* Introduce `SyncState::Importing` state
* Add target to SyncState enum variants and add `is_major_syncing` method on it
* Remove unnecessary duplicated `best_seen_block` from `SyncState` struct
* Revert "Remove unnecessary duplicated `best_seen_block` from `SyncState` struct"
This reverts commit bb8abd458c939881c049f69d59f3acba47c97c5c.
* Add missing `websocket` feature to `libp2p`
Co-authored-by: parity-processbot <>
2022-10-21 13:38:53 +00:00
Davide Galassi
247d05114a
Single ParachainBlockImport instance ( #1782 )
2022-10-21 10:41:46 +02:00
João Paulo Silva de Souza
8395a1a75b
Add link to the weight comparison tool for weights PRs ( #1788 )
...
* add link to the weight comparison tool for weights PRs
* Update scripts/create-benchmark-pr.sh
Co-authored-by: Chevdor <chevdor@users.noreply.github.com >
* add backport checklist item
* move to scripts/ci
Co-authored-by: Chevdor <chevdor@users.noreply.github.com >
2022-10-21 08:01:09 +00:00
dependabot[bot]
1806492574
Bump assert_cmd from 2.0.4 to 2.0.5 ( #1792 )
...
Bumps [assert_cmd](https://github.com/assert-rs/assert_cmd ) from 2.0.4 to 2.0.5.
- [Release notes](https://github.com/assert-rs/assert_cmd/releases )
- [Changelog](https://github.com/assert-rs/assert_cmd/blob/master/CHANGELOG.md )
- [Commits](https://github.com/assert-rs/assert_cmd/compare/v2.0.4...v2.0.5 )
---
updated-dependencies:
- dependency-name: assert_cmd
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2022-10-21 09:37:25 +02:00
Aaro Altonen
7f8aab84b1
Refactor service tests in sc-network ( #12517 )
...
* Refactor service tests in `sc-network`
Create a separate directory for the tests and move common network
instantion related code to `mod.rs` from where it can be used by both
service and chainsync tests.
Use the builder pattern when creating the `TestNetwork` object to reduce
code duplication between the test files.
* Update client/network/src/service/tests/mod.rs
Co-authored-by: Dmitrii Markin <dmitry@markin.tech >
Co-authored-by: Dmitrii Markin <dmitry@markin.tech >
Co-authored-by: parity-processbot <>
2022-10-21 06:39:23 +00:00
Oliver Tale-Yazdi
48a02bb056
Add DefensiveTruncateFrom ( #12515 )
...
* Add DefensiveTruncateFrom
Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io >
* Add tests
Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io >
* Fix tests
Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io >
* Map_err in preimage
Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io >
* Map_err in beefy
Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io >
* Make test dependant in debug-assertions
Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io >
Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io >
Co-authored-by: parity-processbot <>
2022-10-20 21:06:12 +00:00
Koute
92d2977292
Force base weights to be the minimum only when the intercept is negative ( #12482 )
...
* Force base weights to be the minimum only when the intercept is negative; emit minimum execution times
* Add an `assert` making sure the intercept is zero when it's supposed to be zero
* Fix template
Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io >
* ".git/.scripts/bench-bot.sh" pallet dev pallet_assets
* ".git/.scripts/bench-bot.sh" pallet dev pallet_uniques
Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io >
Co-authored-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io >
Co-authored-by: command-bot <>
2022-10-20 20:07:52 +00:00
Oliver Tale-Yazdi
62d72f9258
CI: Enable debug assertions in Wasmer sandbox test ( #12540 )
...
* CI: Enable debug assertions in Wasmer sandbox test
Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io >
* Fix feature dependant import
Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io >
Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io >
2022-10-20 20:57:00 +02:00
dependabot[bot]
fdc8164584
Bump async-trait from 0.1.57 to 0.1.58 ( #1783 )
...
Bumps [async-trait](https://github.com/dtolnay/async-trait ) from 0.1.57 to 0.1.58.
- [Release notes](https://github.com/dtolnay/async-trait/releases )
- [Commits](https://github.com/dtolnay/async-trait/compare/0.1.57...0.1.58 )
---
updated-dependencies:
- dependency-name: async-trait
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: parity-processbot <>
2022-10-20 20:45:35 +02:00
Dmitrii Markin
3a10019a10
Remove multiple DHTs support from Discovery ( #12524 )
2022-10-20 19:30:01 +03:00
Kian Paimani
5c0cb331bb
try and fix build ( #6170 )
2022-10-20 16:23:13 +00:00
Michal Kucharczyk
42215038a3
BlockId removal: refactor: BlockImportOperation+Bknd::finalize_block ( #12535 )
...
* BlockId removal: refactor: BlockImportOperation+Bknd::finalize_block
It changes the arguments of methods of `BlockImportOperation` trait
from: block: `BlockId<Block>` to: hash: `&Block::Hash`
`Backend::finalize_block` was also changed.
This PR is part of BlockId::Number refactoring analysis (paritytech/substrate#11292 )
* Review suggestion applied
thx to @davxy
* trigger CI job
2022-10-20 15:50:59 +00:00
Michal Kucharczyk
e521ad2504
BlockId removal: refactor: Finalizer ( #1779 )
...
* BlockId removal: refactor: Finalizer
It changes the arguments of methods of `Finalizer` trait from: block:
`BlockId<Block>` to: hash: `&Block::Hash`
This PR is part of BlockId::Number refactoring analysis (paritytech/substrate#11292 )
* update lockfile for {"polkadot", "substrate"}
* update Cargo.lock
* Cargo.lock update again
Co-authored-by: parity-processbot <>
2022-10-20 15:21:40 +00:00
Javier Viola
cd00590f21
bump zombienet version ( #1786 )
2022-10-20 16:27:22 +02:00
Oliver Tale-Yazdi
9a2f343526
Co #12341 : Use try-runtime feature ( #1759 )
...
* Add try-runtime feature
Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io >
* More feature gates
Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io >
* Add dummy command
Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io >
* update lockfile for {"polkadot", "substrate"}
* Fix code
* Remove unused import
Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io >
* Imports...
Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io >
* fmt
Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io >
* fmt
Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io >
Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io >
Co-authored-by: parity-processbot <>
2022-10-20 13:17:36 +00:00
Alexander Samusev
ee30bcd3f9
[ci] Fix broken ci, move zombienet job ( #1785 )
2022-10-20 11:58:46 +02:00
Michal Kucharczyk
749bcd1949
BlockId removal: refactor: Finalizer ( #12528 )
...
* BlockId removal: refactor: Finalizer
It changes the arguments of methods of `Finalizer` trait from:
block: `BlockId<Block>` to: hash: `&Block::Hash`
This PR is part of BlockId::Number refactoring analysis (paritytech/substrate#11292 )
* minor corrections
* failing test corrected
* minor rework
2022-10-20 06:44:04 +00:00
Alexander Theißen
7aadc2aa3c
contracts: Decrease the interation count on slow benchmarks ( #12526 )
...
* Decrease amount of benchmark iterations for long slow ones
* ".git/.scripts/bench-bot.sh" pallet dev pallet_contracts
Co-authored-by: command-bot <>
2022-10-19 22:34:03 +00:00
Oliver Tale-Yazdi
52744e4ddb
CI check against Rust feature bleed ( #12341 )
...
* CI check for rust feature bleed
Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io >
* Cargo not available
Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io >
* Handle missing programs
Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io >
* Check for deps
Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io >
* Add doc
Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io >
* Use correct CI image
Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io >
* Remove --offline
Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io >
* Install cargo-workspaces
Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io >
* Remove cargo-workspaces dep
Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io >
* Fix try-runtime feature
Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io >
* Fix features
Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io >
* Fix features
Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io >
* Fix more features...
Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io >
* Use pipeline-script
Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io >
* 🤡
Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io >
* Make stupid change to test the CI
Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io >
* This reverts commit ad2746aa117fa7cb473521113a9bec89aaf26484.
* Use correct branch
Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io >
* Allow failure
Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io >
* Make stupid change to test the CI
Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io >
* Revert "Make stupid change to test the CI"
This reverts commit 16ec00e1675c7ec57c988315549ff71e832a3093.
Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io >
2022-10-19 20:55:20 +00:00
Kian Paimani
7e3ac821e9
Companion for EPM duplicate submissions ( #6115 )
...
* make it work
* add migration
* fix
* Update utils/staking-miner/src/opts.rs
Co-authored-by: Niklas Adolfsson <niklasadolfsson1@gmail.com >
* Update utils/staking-miner/src/monitor.rs
* small tweaks
* Update utils/staking-miner/src/opts.rs
Co-authored-by: Bastian Köcher <info@kchr.de >
* fmt
* fix print'
* fmt
* update lockfile for {"substrate"}
Co-authored-by: Niklas Adolfsson <niklasadolfsson1@gmail.com >
Co-authored-by: Bastian Köcher <info@kchr.de >
Co-authored-by: parity-processbot <>
2022-10-19 20:45:23 +00:00
Kian Paimani
0fe016eed7
EPM: allow duplicate submissions ( #12237 )
...
* allow for duplicate signed submissions
* Fix a bunch of things, seems all good now
* fmt
* Fix
* Update frame/election-provider-multi-phase/src/signed.rs
Co-authored-by: Niklas Adolfsson <niklasadolfsson1@gmail.com >
* Update frame/election-provider-multi-phase/src/signed.rs
Co-authored-by: Niklas Adolfsson <niklasadolfsson1@gmail.com >
* add migratin
* fmt
* comment typo
* some review comments
* fix bench
Co-authored-by: Niklas Adolfsson <niklasadolfsson1@gmail.com >
Co-authored-by: Ross Bulat <ross@parity.io >
2022-10-19 20:05:27 +00:00
Alexander Samusev
66e1092229
[ci] Split .gitlab-ci.yml ( #1701 )
...
* [WIP][ci] Split .gitlab-ci.yml
* comment unused includes
* fix typo
* fix needs
* add all stages
* exclude zombienet from check
2022-10-19 16:31:42 +02:00
dharjeezy
4870337d34
registrar: Avoid freebies in provide_judgement ( #12465 )
...
* evaluate repatriate reserved error in pallet identity
* fix benchmarks
* add repatriate reserved error test
* benchmark fix
* undo lock
* include balance to use for benchmarks
* rename test
* Update frame/identity/src/benchmarking.rs
* Update frame/identity/src/benchmarking.rs
Co-authored-by: Bastian Köcher <git@kchr.de >
2022-10-19 13:29:20 +00:00
Michal Kucharczyk
1d5aa47bee
BlockId removal: refactor: ProofProvider ( #12519 )
...
* BlockId removal: refactor: ProofProvider
It changes the arguments of methods of `ProofProvider` trait from:
block: `BlockId<Block>` to: hash: `&Block::Hash`
This PR is part of BlockId::Number refactoring analysis (paritytech/substrate#11292 )
* LightClientRequestHandler: excessive BlockIdTo bound removed
* imports cleanup
* formatting
* args tyeps cleanup
2022-10-19 10:13:57 +00:00
dependabot[bot]
c0bec76b46
Bump docker/setup-buildx-action from 2.0.0 to 2.1.0 ( #6141 )
...
* Bump docker/setup-buildx-action from 2.0.0 to 2.1.0
Bumps [docker/setup-buildx-action](https://github.com/docker/setup-buildx-action ) from 2.0.0 to 2.1.0.
- [Release notes](https://github.com/docker/setup-buildx-action/releases )
- [Commits](https://github.com/docker/setup-buildx-action/compare/dc7b9719a96d48369863986a06765841d7ea23f6...95cb08cb2672c73d4ffd2f422e6d11953d2a9c70 )
---
updated-dependencies:
- dependency-name: docker/setup-buildx-action
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com >
* match hash with version
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Sergejs Kostjucenko <sergejs@parity.io >
2022-10-19 13:06:03 +03:00
Andronik
f1cab419a3
pov-recovery: try connect to validators ( #1711 )
...
* zombienet/pov-recovery: do not setup reserved connection for collators
* connect eve to dave
* REVERTME: diener update --polkadot --branch ao-recovery-try-connect
* REVERTME: cargo update -p sp-io
* REVERTME: cargo update -p sp-io and hope for the best
* pass reserved flags for eve after --
* Revert "REVERTME: cargo update -p sp-io and hope for the best"
This reverts commit 0d66b70e5ccedc7a35bcf1b30a070e68cd6a8ccc.
* Revert "REVERTME: cargo update -p sp-io"
This reverts commit f8d16c375afd41b8e0c84b59fe62019b86ba95b9.
* REVERTME: cargo update -p sp-io
* Revert "REVERTME: cargo update -p sp-io"
This reverts commit d48e1e6aa2134591b285e284077a063356d44eed.
* REVERTME: cargo update -p sp-io
* REVERTME: cargo update -p sp-io
* try some logs and flags
* apply some suggestions from Sebastian
* let Charlie produce blocks
* Revert "REVERTME: cargo update -p sp-io"
This reverts commit 02838a656eadfcbd26520e6b60ee21ffd8b27afd.
* git checkout master Cargo.lock
* Revert "REVERTME: diener update --polkadot --branch ao-recovery-try-connect"
This reverts commit 8ae8d5347b787ce5e08d6fdb5e7f266299fd70dd.
* zombienet/pov-recovery: 4 validators
* REVERTME: diener update --polkadot --branch ao-recovery-try-connect && cargo update -p polkadot-primitives
* Revert "REVERTME: diener update --polkadot --branch ao-recovery-try-connect && cargo update -p polkadot-primitives"
This reverts commit 3cc918220de5bf8ca5368586e55556464d106afd.
* make sure it is not due to backing group connections
* clean up flags
* try no-mdns on collators, limit out-peers on validators
* try no-mdns on validators and bob
* fix bob flag
* try 7 validators (3 chunks needed for recovery)
* reserved-only on validators
* reserved-only on alice and charlie
* explicitly pass log targets
* rm default_args
* parachain=debug and cumulus-pov-recovery=debug
* try another idea
* try 13 validators (4 chunks required)
* bump block height to 20
* Register parachain after 20sec, increase block target to 20
* bump zombienet version
* remove debug
* bump zombienet
* update lockfile for {"polkadot", "substrate"}
Co-authored-by: Sebastian Kunert <skunert49@gmail.com >
Co-authored-by: Javier Viola <javier@parity.io >
Co-authored-by: parity-processbot <>
Co-authored-by: Bastian Köcher <info@kchr.de >
2022-10-19 10:02:29 +00:00
dependabot[bot]
7d6cf842d2
Bump clap from 4.0.11 to 4.0.17 ( #1778 )
...
Bumps [clap](https://github.com/clap-rs/clap ) from 4.0.11 to 4.0.17.
- [Release notes](https://github.com/clap-rs/clap/releases )
- [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md )
- [Commits](https://github.com/clap-rs/clap/compare/v4.0.11...v4.0.17 )
---
updated-dependencies:
- dependency-name: clap
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2022-10-19 11:18:48 +02:00
Davide Galassi
e21ebcb6a4
Reduce parachain template cognitive complexity ( #1777 )
...
* Removed some not required generics
* Type aliases for some verbose types
2022-10-19 09:58:29 +02:00
Niklas Adolfsson
400ee474a5
companion for #12212 ( #6162 )
...
* companion for #12212
* cargo fmt
* fix build
* update Cargo.lock
* update Cargo.lock
2022-10-18 20:09:37 +02:00
Sebastian Kunert
9e690fe1b6
Bump substrate ( #6164 )
2022-10-18 17:13:28 +00:00
Niklas Adolfsson
e3b269ab0f
frame/utils: introduce substrate-rpc-client crate for RPC utils ( #12212 )
...
* hack together a PoC
* Update utils/frame/rpc-utils/Cargo.toml
Co-authored-by: Kian Paimani <5588131+kianenigma@users.noreply.github.com >
* Update utils/frame/rpc-utils/src/lib.rs
Co-authored-by: Kian Paimani <5588131+kianenigma@users.noreply.github.com >
* rpc_utils -> substrate_rpc_client
* try runtime: remove keep connection
* make CI happy
* cargo fmt
* fix ci
* update lock file
* fix
* fix
Co-authored-by: Kian Paimani <5588131+kianenigma@users.noreply.github.com >
Co-authored-by: kianenigma <kian@parity.io >
2022-10-18 16:39:19 +00:00