Alexander Theißen
e8299e5d7d
Companion for update wasm-opt ( #6209 )
...
* Update cc
* Update regex
* Update thiserror
* Update anyhow
* update lockfile for {"substrate"}
Co-authored-by: parity-processbot <>
2022-10-30 16:50:30 +01:00
Alexander Theißen
9c748c74de
WIP: Replace wasm-gc with wasm-opt ( #12280 )
...
* Use wasm-opt on runtime
* Optimize for size
* Simplify fn compact_wasm_file
* Run a lighter pass for non production builds
* Disable optimizations and keep name section
* Update wasm-opt
* Remove dward sections
* Update wasm-opt
* Update wasm-opt
2022-10-30 10:09:47 +00:00
Doordashcon
a29624ab83
nomination-pools: allow pool-ids to be reused ( #12407 )
...
* initial
* logic check
* do_create
* cargo fmt
* fixes
* ensure_signed
* update
* cargo fmt
* remove unused import
2022-10-29 14:57:16 +00:00
Roman Useinov
b394af891f
[Companion] StakingInterface adjustments ( #6199 )
...
* [Companion] StakingInterface adjustments
* update lockfile for {"substrate"}
Co-authored-by: parity-processbot <>
2022-10-29 16:02:33 +02:00
Roman Useinov
4bc091f4a9
[Enhancement] Convert fast-unstake to use StakingInterface, decouplin… ( #12424 )
...
* [Enhancement] Convert fast-unstake to use StakingInterface, decoupling it from Staking
* Update primitives/staking/src/lib.rs
Co-authored-by: Kian Paimani <5588131+kianenigma@users.noreply.github.com >
* Update primitives/staking/src/lib.rs
Co-authored-by: Kian Paimani <5588131+kianenigma@users.noreply.github.com >
* fix validator comment
* remove todo
* ideas from Kian (#12474 )
Co-authored-by: kianenigma <kian@parity.io >
* Rename StakingInterface -> Staking for nomination-pools
* Staking fixes
* StakingInterface changes
* fix fast-unstake
* fix nomination-pools
* Fix fast-unstake tests
* Fix benches for fast-unstake
* fix is_unbonding
* fix nomination pools
* fix node code
* add mock comments
* fix imports
* remove todo
* more fixes
* more fixes
* bench fixes
* more fixes
* more fixes
* import fix
* more fixes
* more bench fix
* refix
* refix
* Update primitives/staking/src/lib.rs
Co-authored-by: Kian Paimani <5588131+kianenigma@users.noreply.github.com >
* is_unbonding returns a result
* fix
* review fixes
* more review fixes
* more fixes
* more fixes
* Update frame/fast-unstake/src/benchmarking.rs
Co-authored-by: Squirrel <gilescope@gmail.com >
* remove redundant CurrencyBalance from nom-pools
* remove CB
* rephrase
* Apply suggestions from code review
* Update frame/nomination-pools/src/tests.rs
* finish damn renamed
* clippy fix
* fix
Co-authored-by: Kian Paimani <5588131+kianenigma@users.noreply.github.com >
Co-authored-by: kianenigma <kian@parity.io >
Co-authored-by: parity-processbot <>
Co-authored-by: Squirrel <gilescope@gmail.com >
2022-10-29 09:22:58 +00:00
Koute
3faa0bd20d
Treat near-zero intercept values as zero when calculating weights ( #12573 )
...
* Treat near-zero intercept values as zero when calculating weights
* Simplify comparison
Co-authored-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io >
* Update contract weights
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: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io >
2022-10-28 20:39:59 +00:00
Sergej Sakac
a1f8a74a37
Utility: add more tests for batch/batchAll/forceBatch ( #12506 )
...
* Utility: add more tests for batch/batchAll/forceBatch
* remove unnecessary
* batch works with council
* add more tests
* better call examples
* shorter code
* Update frame/utility/src/lib.rs
Co-authored-by: Bastian Köcher <git@kchr.de >
* Update frame/utility/src/lib.rs
Co-authored-by: Bastian Köcher <git@kchr.de >
* Update frame/utility/src/lib.rs
Co-authored-by: Bastian Köcher <git@kchr.de >
* update TestBaseCallFilter
* fix
* fix?
* fix
Co-authored-by: Bastian Köcher <git@kchr.de >
2022-10-28 15:18:09 +00:00
Bastian Köcher
296d3d75d7
Companion for aura CompatibilityMode ( #1803 )
...
* Companion for aura CompatibilityMode
As no parachain was launched with the broken authority set change handling we don't need to expose
the compatibility mode.
* FMT
* update lockfile for {"substrate", "polkadot"}
Co-authored-by: parity-processbot <>
2022-10-28 13:51:54 +00:00
clangenb
9c1af65012
bump ed25519-zebra; fixes full_crypto feature flag in no_std ( #12576 )
2022-10-28 15:38:25 +02:00
Bastian Köcher
33b61f0e03
Aura: Adds some compatibility mode to support old chains ( #12492 )
...
* Aura: Adds some compatibility mode to support old chains
In https://github.com/paritytech/substrate/pull/9132 we changed the way how we get the authorities
from the runtime. Before this mentioned pr we would call `initialize_block` before calling the
authorities runtime function. The problem with this was that when you have a block X that would
switch the authority set, it would already be signed by an authority of the new set. This was wrong,
as a block should only be signed by the current authority set. As this change is a hard fork, this
pr brings back the possibility for users that have a chain running with this old logic to upgrade.
They will need to use:
```
CompatibilityMode::UseInitializeBlock { until: some_block_in_the_future }
```
Using this compatibility mode will make the node behave like the old nodes, aka calling
`initialize_block` before doing the actual runtime call to `authorities`. Then when the given
`until` block is being build/imported the node switches to the new behaviour of not calling
`initialize_block` before. This is a hard fork, so the `until` block should be chosen wisely as a
point where all nodes in the network have upgraded.
* Fixes
* Make docs ready
* Update client/consensus/aura/src/lib.rs
Co-authored-by: André Silva <123550+andresilva@users.noreply.github.com >
* Update client/consensus/aura/src/lib.rs
Co-authored-by: André Silva <123550+andresilva@users.noreply.github.com >
* Update client/consensus/aura/src/lib.rs
Co-authored-by: André Silva <123550+andresilva@users.noreply.github.com >
* FMT
Co-authored-by: André Silva <123550+andresilva@users.noreply.github.com >
2022-10-28 13:25:49 +00:00
Mrisho Lukamba
ca779b36da
replaced println with log Closes #12338 ( #12348 )
...
* replaced println with log Closes #12338
* fixed println
* Apply suggestions from code review
Co-authored-by: Bastian Köcher <git@kchr.de >
* Update utils/frame/benchmarking-cli/src/pallet/command.rs
* Apply suggestions from code review
* ".git/.scripts/fmt.sh" 1
Co-authored-by: Shawn Tabrizi <shawntabrizi@gmail.com >
Co-authored-by: Bastian Köcher <git@kchr.de >
Co-authored-by: command-bot <>
2022-10-28 12:16:18 +00:00
Malte Kliemann
15cf1a8791
Fix typo ( #12571 )
2022-10-27 15:23:04 +00:00
Dan Shields
1581d1b5bd
Update impl guide README ( #6197 )
...
* update impl guide readme
* Update README.md
2022-10-27 14:04:56 +02:00
Alexander Samusev
86744b6b16
[ci] cargo-check-benches against different base branches ( #12557 )
2022-10-27 10:54:07 +02:00
Oliver Tale-Yazdi
4badb7c3c7
Co #12558 : Update pallet-multisig benches ( #1805 )
...
* Typo
Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io >
* Add multisig weights
Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io >
* cargo update -p polkadot-runtime-common
Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io >
Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io >
2022-10-26 22:29:27 +00:00
Oliver Tale-Yazdi
586fa42c0b
Co #12558 : Update pallet-multisig benches ( #6188 )
...
* Typo
Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io >
* Add multisig weights
Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io >
* Update multisig weights
Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io >
* update lockfile for {"substrate"}
Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io >
Co-authored-by: parity-processbot <>
2022-10-27 00:02:46 +02:00
Oliver Tale-Yazdi
adccdd500b
Update pallet-multisig benches ( #12558 )
...
* Typo
Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io >
* ".git/.scripts/bench-bot.sh" pallet dev pallet_multisig
* remove functions
* ".git/.scripts/bench-bot.sh" pallet dev pallet_multisig
Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io >
Co-authored-by: command-bot <>
Co-authored-by: Shawn Tabrizi <shawntabrizi@gmail.com >
2022-10-26 21:08:30 +00:00
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