Gonçalo Pestana
82aa16315d
Implements try_state hook in elections and EPM pallets ( #13979 )
...
* Adds try_state hook to elections pallets
* Addresses PR review comments
Co-authored-by: Liam Aharon <liam.aharon@hotmail.com >
* remove unecessary println
* ensures try-runtime does not mutate storage
* Addresses PR comments
* Fixes snapshot invariant checks; simplifies test infra
---------
Co-authored-by: Liam Aharon <liam.aharon@hotmail.com >
Co-authored-by: parity-processbot <>
2023-04-27 18:45:43 +00:00
Liam Aharon
1fbf37f991
ci: update check-runtime-migration fixme issues ( #7141 )
...
* update configs for check-runtime-migration tasks
* update fixme issues
* fix indentation
2023-04-28 00:59:04 +10:00
Oliver Tale-Yazdi
b5201fa0ec
FRAME: inherited call weight syntax ( #13932 )
...
* First approach on pallet::call_weight
Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io >
* Use attr on pallet::call instead
Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io >
* Ui tests
Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io >
* Rename to weight(prefix = ...))
Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io >
* Simplify to #[pallet::call(weight(T))]
Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io >
* Add stray token error
Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io >
* Cleanup
Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io >
* Migrate remaining pallets
Using script from https://github.com/ggwpez/substrate-scripts/blob/e1b5ea5b5b4018867f3e869fce6f448b4ba9d71f/frame-code-migration/src/call_weight.rs
Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io >
* Try to add some docs
Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io >
* Revert "Migrate remaining pallets"
Lets do this as a follow-up, I dont want to bloat this small MR.
This reverts commit 331d4b42d72de1dacaed714d69166fa1bc9c92dd.
Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io >
* Renames
Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io >
* Review fixes
Co-authored-by: Sam Johnson <sam@durosoft.com >
Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io >
* Test weights
Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io >
* Update UI tests
Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io >
* Update frame/support/procedural/src/pallet/parse/mod.rs
Co-authored-by: Muharem Ismailov <ismailov.m.h@gmail.com >
* Remove old code
Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io >
* Update docs
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 <>
Co-authored-by: Muharem Ismailov <ismailov.m.h@gmail.com >
2023-04-27 14:08:08 +00:00
Liam Aharon
6e5141fc23
try-runtime-cli: improve ci stability ( #14030 )
...
* hardcode 1 thread
* ci stability
* fix comment
* improve comment
* kick ci
* kick ci
* update expect message
* improve comment
* kick ci
* kick ci
* configure threads with env var
* fix threads env var
* fix threads env var
2023-04-28 00:03:47 +10:00
Kian Paimani
2320bdd388
improve staking interface methods ( #14023 )
...
* improve staking interface methods
* fix
* fix
* fix build
* restart
* fix
---------
Co-authored-by: parity-processbot <>
2023-04-27 11:27:12 +00:00
Keith Yeung
b441d05dac
Companion for paritytech/polkadot#7098 ( #2469 )
...
* Companion for paritytech/polkadot#7098
* Fixes
* Add missing benchmarked function
* Fix typo
* update lockfile for {"polkadot", "substrate"}
---------
Co-authored-by: parity-processbot <>
2023-04-27 10:48:22 +00:00
yjh
31e1329da0
chore(cli): make cli display docs correctly ( #14017 )
...
* chore(cli): make cli display docs correctly
* ".git/.scripts/commands/fmt/fmt.sh"
---------
Co-authored-by: command-bot <>
2023-04-27 12:34:15 +02:00
Keith Yeung
d20e3c1145
XCM: Implement a blocking barrier ( #7098 )
...
* Move XCM matcher to xcm-builder
* Use ProcessMessageError as the error type in MatchXcm and ShouldExecute
* Implement a blocking barrier
* Fixes
* Add benchmarking for force_suspension
* ".git/.scripts/commands/bench/bench.sh" runtime westend pallet_xcm
* ".git/.scripts/commands/bench/bench.sh" runtime rococo pallet_xcm
* ".git/.scripts/commands/bench/bench.sh" runtime kusama pallet_xcm
* ".git/.scripts/commands/bench/bench.sh" runtime polkadot pallet_xcm
* ".git/.scripts/commands/bench/bench.sh" runtime westend pallet_xcm
* ".git/.scripts/commands/bench/bench.sh" runtime rococo pallet_xcm
---------
Co-authored-by: command-bot <>
2023-04-27 10:22:39 +00:00
Pierre Besson
140e2b4e92
Add JSON chainspecs for Wococo and Rococo Bridge-hub ( #2473 )
...
* add bridge-hub rococo and wococo chainspecs
* use json chainspec for bridge-hub-rococo and bridge-hub-wococo
* Removed unused functions
---------
Co-authored-by: Branislav Kontur <bkontur@gmail.com >
2023-04-27 12:15:04 +02:00
PG Herveou
ac6e43e628
contracts Fix store-call test path ( #14028 )
2023-04-27 10:01:12 +00:00
Bastian Köcher
d427792b6b
sc-network-sync: Improve error reporting ( #14025 )
...
Before this wasn't printing a warning for `VerificationFailed` when there wasn't a peer assigned to
the error message. However, if there happens an error on importing the state there wouldn't be any
error. This pr improves the situation to also print an error in this case. Besides that there are
some other cleanups.
2023-04-27 11:28:03 +02:00
Liam Aharon
be6b03738e
collective pallet: sort genesis members and enforce max len constraint ( #13988 )
...
* insert members in sorted order
* improve variable name
* enforce genesis members length constraint
2023-04-27 18:55:01 +10:00
Liam Aharon
27f89d653b
remote-externalities: batch insert key/values ( #14004 )
...
* add batch inserting into remote externalities
* use into_iter
* remove redundant comment
* redundant batch insert
* avoid extra vec allocations
2023-04-27 18:12:29 +10:00
dependabot[bot]
1125655024
Bump chevdor/srtool-actions from 0.6.0 to 0.7.0 ( #7135 )
...
Bumps [chevdor/srtool-actions](https://github.com/chevdor/srtool-actions ) from 0.6.0 to 0.7.0.
- [Release notes](https://github.com/chevdor/srtool-actions/releases )
- [Commits](https://github.com/chevdor/srtool-actions/compare/v0.6.0...v0.7.0 )
---
updated-dependencies:
- dependency-name: chevdor/srtool-actions
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2023-04-27 09:55:20 +03:00
PG Herveou
34780b1b2b
contracts Add storage_deposit test ( #14003 )
...
* contracts Add storage_deposit test
* fix comments
* PR comments
2023-04-27 08:23:01 +02:00
gupnik
9ed28d07a0
Clears Old Storage for Session pallet ( #7132 )
...
* Fixes migration for Session pallet
* Moves migration to polkadot
* Minor change
* Fixes test
* ".git/.scripts/commands/fmt/fmt.sh"
* Allow dead_code for test
* removes test
* Minor change
* Fixes build
* Import vec for try-runtime
* Addresses review comment
* ".git/.scripts/commands/fmt/fmt.sh"
* Addresses review comment
---------
Co-authored-by: command-bot <>
2023-04-27 04:32:15 +00:00
dependabot[bot]
0304efb0b2
Bump h2 from 0.3.9 to 0.3.17 ( #2451 )
...
Bumps [h2](https://github.com/hyperium/h2 ) from 0.3.9 to 0.3.17.
- [Release notes](https://github.com/hyperium/h2/releases )
- [Changelog](https://github.com/hyperium/h2/blob/master/CHANGELOG.md )
- [Commits](https://github.com/hyperium/h2/compare/v0.3.9...v0.3.17 )
---
updated-dependencies:
- dependency-name: h2
dependency-type: indirect
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2023-04-27 00:50:53 +02:00
Gavin Wood
781ea7cbdc
Various minor fixes ( #13945 )
...
* Fix: Incorrect implementation of can_reserve check
* Fix: Incorrect migration of consumer counting for existing accounts with frozen amounts
* Fix: Inconsistent implementation between assets can_deposit and new_account
* Fixes
* Fixes
* Another fix
* Update tests.rs
* Update fungible_tests.rs
* Use `can_accrue_consumers` in the body of `can_inc_consumer`
---------
Co-authored-by: Keith Yeung <kungfukeith11@gmail.com >
Co-authored-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io >
Co-authored-by: parity-processbot <>
2023-04-26 14:26:07 +00:00
ordian
703009fb39
malus: dont panic on missing validation data ( #6952 )
...
* malus: don't panic if can't fetch validation data
* malus: add fast-runtime feature
2023-04-26 14:03:26 +00:00
dependabot[bot]
c0f575a4ca
Bump actions/cache from 3.2.3 to 3.3.1 ( #2488 )
...
Bumps [actions/cache](https://github.com/actions/cache ) from 3.2.3 to 3.3.1.
- [Release notes](https://github.com/actions/cache/releases )
- [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md )
- [Commits](https://github.com/actions/cache/compare/58c146cc91c5b9e778e71775dfe9bf1442ad9a12...88522ab9f39a2ea568f7027eddc7d8d8bc9d59c8 )
---
updated-dependencies:
- dependency-name: actions/cache
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2023-04-26 15:53:12 +02:00
dependabot[bot]
20ea1fe474
Bump actions/upload-artifact from 3.1.1 to 3.1.2 ( #2487 )
...
Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact ) from 3.1.1 to 3.1.2.
- [Release notes](https://github.com/actions/upload-artifact/releases )
- [Commits](https://github.com/actions/upload-artifact/compare/83fd05a356d7e2593de66fc9913b3002723633cb...0b7f8abb1508181956e8e162db84b466c27e18ce )
---
updated-dependencies:
- dependency-name: actions/upload-artifact
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2023-04-26 15:52:17 +02:00
dependabot[bot]
47086dae11
Bump chevdor/srtool-actions from 0.6.0 to 0.7.0 ( #2486 )
...
Bumps [chevdor/srtool-actions](https://github.com/chevdor/srtool-actions ) from 0.6.0 to 0.7.0.
- [Release notes](https://github.com/chevdor/srtool-actions/releases )
- [Commits](https://github.com/chevdor/srtool-actions/compare/v0.6.0...v0.7.0 )
---
updated-dependencies:
- dependency-name: chevdor/srtool-actions
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2023-04-26 15:52:06 +02:00
dependabot[bot]
fda48417ac
Bump actions/download-artifact from 3.0.1 to 3.0.2 ( #2485 )
...
Bumps [actions/download-artifact](https://github.com/actions/download-artifact ) from 3.0.1 to 3.0.2.
- [Release notes](https://github.com/actions/download-artifact/releases )
- [Commits](https://github.com/actions/download-artifact/compare/9782bd6a9848b53b110e712e20e42d89988822b7...9bc31d5ccc31df68ecc42ccf4149144866c47d8a )
---
updated-dependencies:
- dependency-name: actions/download-artifact
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2023-04-26 15:51:51 +02:00
Sasha Gryaznov
356b752d58
fix a test ( #14021 )
2023-04-26 13:46:44 +00:00
Sasha Gryaznov
63076eccc7
Companion for substrate#13565 ( #2306 )
...
* add default deposit limit
* cargo upd
2023-04-26 13:20:55 +00:00
dependabot[bot]
ad41d0e14f
Bump actions/cache from 3.0.11 to 3.2.3 ( #2082 )
...
Bumps [actions/cache](https://github.com/actions/cache ) from 3.0.11 to 3.2.3.
- [Release notes](https://github.com/actions/cache/releases )
- [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md )
- [Commits](https://github.com/actions/cache/compare/9b0c1fce7a93df8e3bb8926b0d6e9d89e92f20a7...58c146cc91c5b9e778e71775dfe9bf1442ad9a12 )
---
updated-dependencies:
- dependency-name: actions/cache
dependency-type: direct:production
update-type: version-update:semver-minor
...
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 <>
2023-04-26 14:13:58 +02:00
Qinxuan Chen
bed8c87c8a
sp-core: remove useless bounded module ( #13865 )
2023-04-26 11:37:44 +00:00
Sasha Gryaznov
60310de7d6
[contracts] Port host functions to Weight V2 and storage deposit limit ( #13565 )
...
* added [unstable][seal2] call()
* updated test to cover new seal_call proof_limit
* docs updated
* add [seal2][unstable] instantiate() and test
* add [seal2][unstable] weight_to_fee() + docs and test
* add [seal2][unstable] gas_left() + docs and test
* update benchmarks
* add DefaultDepositLimit to pallet Config
* specify deposit limit for nested call
add test for nested call deposit limit
save: separate deposit limit for nested calls
* specify deposit limit for nested instantiate
save: works with test
cleaned up debugging outputs
* update benchmarks
* added missing fixtures
* fix benches
* pass explicit deposit limit to storage bench
* explicit deposit limit for another set_storage bench
* add more deposit limit for storage benches
* moving to simplified benchmarks
* moved to simplified benchmarks
* fix seal_weight_to_fee bench
* fix seal_instantiate benchmark
* doc typo fix
* default dl for benchmarking
more dl for tests
dl for tests to max
deposit_limit fix in instantiate bench
fix instantiate bench
fix instantiate benchmark
fix instantiate bench again
remove dbg
fix seal bench again
fixing it still
seal_instantiate zero deposit
less runs to check if deposit enough
try
try 2
try 3
try 4
* max_runtime_mem to Schedule limits
* add default deposit limit fallback check to test
* weight params renaming
* fmt
* Update frame/contracts/src/benchmarking/mod.rs
Co-authored-by: PG Herveou <pgherveou@gmail.com >
* prettify inputs in tests
* typestate param refactored
---------
Co-authored-by: PG Herveou <pgherveou@gmail.com >
2023-04-26 11:27:13 +00:00
dependabot[bot]
7fe06a3b6e
Bump actions/upload-artifact from 3.1.0 to 3.1.1 ( #1799 )
...
* Bump actions/upload-artifact from 3.1.0 to 3.1.1
Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact ) from 3.1.0 to 3.1.1.
- [Release notes](https://github.com/actions/upload-artifact/releases )
- [Commits](https://github.com/actions/upload-artifact/compare/3cea5372237819ed00197afe530f5a7ea3e805c8...83fd05a356d7e2593de66fc9913b3002723633cb )
---
updated-dependencies:
- dependency-name: actions/upload-artifact
dependency-type: direct:production
update-type: version-update:semver-patch
...
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 >
2023-04-26 12:41:13 +02:00
dependabot[bot]
630e7e78e2
Bump actions/download-artifact from 3.0.0 to 3.0.1 ( #1798 )
...
* Bump actions/download-artifact from 3.0.0 to 3.0.1
Bumps [actions/download-artifact](https://github.com/actions/download-artifact ) from 3.0.0 to 3.0.1.
- [Release notes](https://github.com/actions/download-artifact/releases )
- [Commits](https://github.com/actions/download-artifact/compare/fb598a63ae348fa914e94cd0ff38f362e927b741...9782bd6a9848b53b110e712e20e42d89988822b7 )
---
updated-dependencies:
- dependency-name: actions/download-artifact
dependency-type: direct:production
update-type: version-update:semver-patch
...
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 <85877331+sergejparity@users.noreply.github.com >
2023-04-26 12:39:01 +02:00
dependabot[bot]
8e9d70bea5
Bump ruby/setup-ruby from 1.146.0 to 1.147.0 ( #2484 )
...
Bumps [ruby/setup-ruby](https://github.com/ruby/setup-ruby ) from 1.146.0 to 1.147.0.
- [Release notes](https://github.com/ruby/setup-ruby/releases )
- [Commits](https://github.com/ruby/setup-ruby/compare/55283cc23133118229fd3f97f9336ee23a179fcf...6cecb48364174b0952995175c55f9bf5527e6682 )
---
updated-dependencies:
- dependency-name: ruby/setup-ruby
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2023-04-26 10:37:31 +02:00
gupnik
d8723a080c
Offences Migration v1: Removes ReportsByKindIndex ( #7114 )
...
* Companion for substrate
* Adds kusama migration
* update lockfile for {"substrate"}
* Temp allow try-runtime to fail
... until https://github.com/paritytech/substrate/issues/14006 is done.
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 <>
Co-authored-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io >
2023-04-26 04:08:08 +00:00
Squirrel
01c66da036
Allow missing docs for autogen weights. ( #14011 )
2023-04-25 22:48:37 +02:00
gupnik
6c8acaa5e2
Removes ReportsByKindIndex ( #13936 )
...
* Removes ReportsByKind
* Minor build fixes
* adds migration
* Addresses review comment
* Uses clear but weight check fails
* Uses unique
* Updates test to commit the change before migration
* Uses reads_writes
* ".git/.scripts/commands/fmt/fmt.sh"
* Fixes build
* Addresses review comments
* ".git/.scripts/commands/fmt/fmt.sh"
* fixes typo
---------
Co-authored-by: command-bot <>
2023-04-25 15:20:58 +00:00
eskimor
33dd2584df
Fix stalling dispute coordinator. ( #7125 )
...
* Fix stalling dispute coordinator.
* Initialization.
---------
Co-authored-by: eskimor <eskimor@no-such-url.com >
2023-04-25 16:42:45 +02:00
Qinxuan Chen
b06748e2ab
frame-support: migrate some tests from decl_* macros to the new pallet macros ( #12401 )
...
* frame-support: migrate some tests from decl macros to new pallet attribute macros
* Remove useless type alias
* Remove useless type alias
* Work around for rust issue 52234
Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io >
* Fix tests
Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io >
* Use polkadot-compatible paste version
Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io >
* Fix crate access and add tests
Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io >
* Typo
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 >
Co-authored-by: parity-processbot <>
2023-04-25 11:58:21 +00:00
PG Herveou
c11cb1b274
contracts Add LOG_TARGET constant ( #14002 )
...
* contracts Add LOG_TARGET constant
* Update frame/contracts/src/lib.rs
Co-authored-by: Sasha Gryaznov <hi@agryaznov.com >
---------
Co-authored-by: Sasha Gryaznov <hi@agryaznov.com >
2023-04-25 11:46:20 +00:00
dependabot[bot]
79021f4912
Bump ruby/setup-ruby from 1.133.2 to 1.146.0 ( #2466 )
...
Bumps [ruby/setup-ruby](https://github.com/ruby/setup-ruby ) from 1.133.2 to 1.146.0.
- [Release notes](https://github.com/ruby/setup-ruby/releases )
- [Commits](https://github.com/ruby/setup-ruby/compare/93287a1fa82c6ddbb6d8db978df4b0119cd8879f...55283cc23133118229fd3f97f9336ee23a179fcf )
---
updated-dependencies:
- dependency-name: ruby/setup-ruby
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2023-04-25 12:19:20 +02:00
yjh
bcf7601169
refactor(cli): Make some run params reusable ( #13870 )
...
* refactor: extract TelemetryParams and PrometheusParams
* improve run_cmd docs
* extract `RuntimeParams`
* use `normalize`
* keep params types same style
* improve `max_runtime_instances`
* fmt
* add license and improve code
* Update client/cli/src/params/runtime_params.rs
Co-authored-by: Bastian Köcher <git@kchr.de >
---------
Co-authored-by: Bastian Köcher <git@kchr.de >
2023-04-25 10:18:35 +02:00
Alexander Samusev
b46a512e1a
[ci] Add message to cargo-deny ( #14001 )
...
* [ci] Add message to cargo-deny
* fix cargo-deny-licenses
2023-04-25 10:15:57 +02:00
Bastian Köcher
fcfe769c6c
pallet-democracy: Do not request the proposal when scheduling ( #13827 )
...
The requesting of the proposal is actually done now in `pallet-scheduler`.
Fixes: https://github.com/paritytech/substrate/issues/13534
2023-04-25 09:21:54 +02:00
Bastian Köcher
3e02be440e
frame-support-procedural: Fix detection of the tuples feature ( #13996 )
...
We didn't had the tuples features declared for the `frame-support-procedural` crate and thus, it
could not properly detect that the feature was already enabled.
2023-04-24 20:23:26 +00:00
dependabot[bot]
aea594f24f
Bump enumflags2 from 0.7.5 to 0.7.7 ( #2481 )
...
Bumps [enumflags2](https://github.com/meithecatte/enumflags2 ) from 0.7.5 to 0.7.7.
- [Release notes](https://github.com/meithecatte/enumflags2/releases )
- [Commits](https://github.com/meithecatte/enumflags2/compare/v0.7.5...v0.7.7 )
---
updated-dependencies:
- dependency-name: enumflags2
dependency-type: indirect
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2023-04-24 19:54:34 +00:00
dependabot[bot]
801871afa1
Bump enumflags2 from 0.7.5 to 0.7.7 ( #13995 )
...
Bumps [enumflags2](https://github.com/meithecatte/enumflags2 ) from 0.7.5 to 0.7.7.
- [Release notes](https://github.com/meithecatte/enumflags2/releases )
- [Commits](https://github.com/meithecatte/enumflags2/compare/v0.7.5...v0.7.7 )
---
updated-dependencies:
- dependency-name: enumflags2
dependency-type: direct:production
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2023-04-24 21:31:13 +02:00
Andrei Sandu
634b2f6ad2
Fix rolling session window ( #7126 )
...
* Use stored sessions 🤦
Signed-off-by: Andrei Sandu <andrei-mihail@parity.io >
* Add test
Signed-off-by: Andrei Sandu <andrei-mihail@parity.io >
* remove redundant
Signed-off-by: Andrei Sandu <andrei-mihail@parity.io >
---------
Signed-off-by: Andrei Sandu <andrei-mihail@parity.io >
2023-04-24 18:14:36 +00:00
Alexander Samusev
65eee675a6
[ci] Update buildah command and version ( #2479 )
2023-04-24 17:33:46 +02:00
Alexander Samusev
e9ff897511
[ci] Update buildah command and version ( #13989 )
2023-04-24 17:33:21 +02:00
Alexander Samusev
25d557f930
[ci] Update buildah command and version ( #7128 )
2023-04-24 17:33:07 +02:00
Muharem Ismailov
97f4a09591
Vote locks for all reasons except RESERVE ( #13914 )
...
* Vote locks tip
* except reserve
* reason for delegate
* fix tests
---------
Co-authored-by: parity-processbot <>
2023-04-24 14:57:45 +00:00
Alejandro Martinez Andres
63d354aea0
Bump assigned_slots params ( #6991 )
2023-04-24 14:31:37 +00:00