-
Notifications
You must be signed in to change notification settings - Fork 700
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'origin/master' into bko-bridges-improve…
…ments
- Loading branch information
Showing
25 changed files
with
1,371 additions
and
461 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
# Schema: Polkadot SDK PRDoc Schema (prdoc) v1.0.0 | ||
# See doc at https://raw.githubusercontent.com/paritytech/polkadot-sdk/master/prdoc/schema_user.json | ||
|
||
title: Validator Re-Enabling (master PR) | ||
|
||
doc: | ||
- audience: Runtime Dev | ||
description: | | ||
Implementation of the Stage 3 for the New Disabling Strategy: https://github.com/paritytech/polkadot-sdk/issues/4359 | ||
|
||
This PR changes when an active validator node gets disabled for comitting offences. | ||
When Byzantine Threshold Validators (1/3) are already disabled instead of no longer | ||
disabling the highest offenders will be disabled potentially re-enabling low offenders. | ||
|
||
- audience: Node Operator | ||
description: | | ||
Implementation of the Stage 3 for the New Disabling Strategy: https://github.com/paritytech/polkadot-sdk/issues/4359 | ||
|
||
This PR changes when an active validator node gets disabled within parachain consensus (reduced responsibilities and | ||
reduced rewards) for comitting offences. This should not affect active validators on a day-to-day basis and will only | ||
be relevant when the network is under attack or there is a wide spread malfunction causing slashes. In that case | ||
lowest offenders might get eventually re-enabled (back to normal responsibilities and normal rewards). | ||
|
||
migrations: | ||
db: [] | ||
runtime: | ||
- reference: pallet-staking | ||
description: | | ||
Migrating `DisabledValidators` from `Vec<u32>` to `Vec<(u32, PerBill)>` where the PerBill represents the severity | ||
of the offence in terms of the % slash. | ||
|
||
crates: | ||
- name: pallet-staking | ||
bump: minor | ||
|
||
- name: pallet-session | ||
bump: minor |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
# Schema: Polkadot SDK PRDoc Schema (prdoc) v1.0.0 | ||
# See doc at https://raw.githubusercontent.com/paritytech/polkadot-sdk/master/prdoc/schema_user.json | ||
|
||
title: Migrate pallet-democracy benchmark to v2 | ||
|
||
doc: | ||
- audience: Runtime Dev | ||
description: | | ||
"Part of issue #6202." | ||
|
||
crates: | ||
- name: pallet-democracy | ||
bump: patch |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.