-
Notifications
You must be signed in to change notification settings - Fork 132
Fix bridge hub rococo/wococo weights #1712
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
serban300
merged 5 commits into
paritytech:master
from
serban300:bridge-hub-rococo-wococo
Dec 12, 2022
Merged
Changes from 4 commits
Commits
Show all changes
5 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains hidden or 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 hidden or 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,41 @@ | ||
| [package] | ||
| name = "bp-bridge-hub-cumulus" | ||
| description = "Primitives of BridgeHubRococo parachain runtime." | ||
| version = "0.1.0" | ||
| authors = ["Parity Technologies <admin@parity.io>"] | ||
| edition = "2021" | ||
| license = "GPL-3.0-or-later WITH Classpath-exception-2.0" | ||
|
|
||
| [dependencies] | ||
| smallvec = "1.10.0" | ||
|
|
||
| # Bridge Dependencies | ||
|
|
||
| bp-polkadot-core = { path = "../../primitives/polkadot-core", default-features = false } | ||
| bp-runtime = { path = "../../primitives/runtime", default-features = false } | ||
| bp-messages = { path = "../../primitives/messages", default-features = false } | ||
|
|
||
| # Substrate Based Dependencies | ||
|
|
||
| frame-system = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } | ||
| frame-support = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } | ||
| sp-api = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } | ||
| sp-std = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } | ||
|
|
||
| # Polkadot Dependencies | ||
| polkadot-primitives = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "master" } | ||
| polkadot-runtime-constants = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "master" } | ||
|
|
||
| [features] | ||
| default = ["std"] | ||
| std = [ | ||
| "bp-polkadot-core/std", | ||
| "bp-messages/std", | ||
| "bp-runtime/std", | ||
| "frame-system/std", | ||
| "frame-support/std", | ||
| "sp-api/std", | ||
| "sp-std/std", | ||
| "polkadot-primitives/std", | ||
| "polkadot-runtime-constants/std", | ||
| ] |
This file contains hidden or 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,106 @@ | ||
| // Copyright 2022 Parity Technologies (UK) Ltd. | ||
| // This file is part of Parity Bridges Common. | ||
|
|
||
| // Parity Bridges Common is free software: you can redistribute it and/or modify | ||
| // it under the terms of the GNU General Public License as published by | ||
| // the Free Software Foundation, either version 3 of the License, or | ||
| // (at your option) any later version. | ||
|
|
||
| // Parity Bridges Common is distributed in the hope that it will be useful, | ||
| // but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
| // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
| // GNU General Public License for more details. | ||
|
|
||
| // You should have received a copy of the GNU General Public License | ||
| // along with Parity Bridges Common. If not, see <http://www.gnu.org/licenses/>. | ||
|
|
||
| #![cfg_attr(not(feature = "std"), no_std)] | ||
|
|
||
| use bp_messages::*; | ||
| pub use bp_polkadot_core::{ | ||
| AccountId, AccountInfoStorageMapKeyProvider, AccountPublic, Balance, BlockNumber, Hash, Hasher, | ||
| Hashing, Header, Index, Nonce, Perbill, Signature, SignedBlock, SignedExtensions, | ||
| UncheckedExtrinsic, MAX_UNCONFIRMED_MESSAGES_IN_CONFIRMATION_TX, | ||
| MAX_UNREWARDED_RELAYERS_IN_CONFIRMATION_TX, TX_EXTRA_BYTES, | ||
| }; | ||
| use frame_support::{ | ||
| dispatch::DispatchClass, | ||
| parameter_types, | ||
| sp_runtime::{MultiAddress, MultiSigner}, | ||
| weights::{constants, WeightToFeeCoefficient, WeightToFeeCoefficients, WeightToFeePolynomial}, | ||
| }; | ||
| use frame_system::limits; | ||
|
|
||
| /// All cumulus bridge hubs allow normal extrinsics to fill block up to 75 percent. | ||
| /// | ||
| /// This is a copy-paste from the cumulus repo's `parachains-common` crate. | ||
| pub const NORMAL_DISPATCH_RATIO: Perbill = Perbill::from_percent(75); | ||
|
|
||
| /// All cumulus bridge hubs chains allow for 0.5 seconds of compute with a 6-second average block | ||
| /// time. | ||
| /// | ||
| /// This is a copy-paste from the cumulus repo's `parachains-common` crate. | ||
| pub const MAXIMUM_BLOCK_WEIGHT: Weight = constants::WEIGHT_PER_SECOND | ||
| .saturating_div(2) | ||
| .set_proof_size(polkadot_primitives::v2::MAX_POV_SIZE as u64); | ||
|
|
||
| /// All cumulus bridge hubs assume that about 5 percent of the block weight is consumed by | ||
| /// `on_initialize` handlers. This is used to limit the maximal weight of a single extrinsic. | ||
| /// | ||
| /// This is a copy-paste from the cumulus repo's `parachains-common` crate. | ||
| pub const AVERAGE_ON_INITIALIZE_RATIO: Perbill = Perbill::from_percent(5); | ||
|
|
||
| parameter_types! { | ||
| pub BlockLength: limits::BlockLength = limits::BlockLength::max_with_normal_ratio( | ||
| 5 * 1024 * 1024, | ||
| NORMAL_DISPATCH_RATIO, | ||
| ); | ||
|
|
||
| pub const BlockExecutionWeight: Weight = constants::WEIGHT_PER_NANOS.saturating_mul(5_000_000); | ||
|
|
||
| pub const ExtrinsicBaseWeight: Weight = constants::WEIGHT_PER_NANOS.saturating_mul(125_000); | ||
|
|
||
| pub BlockWeights: limits::BlockWeights = limits::BlockWeights::builder() | ||
| .base_block(BlockExecutionWeight::get()) | ||
| .for_class(DispatchClass::all(), |weights| { | ||
| weights.base_extrinsic = ExtrinsicBaseWeight::get(); | ||
| }) | ||
| .for_class(DispatchClass::Normal, |weights| { | ||
| weights.max_total = Some(NORMAL_DISPATCH_RATIO * MAXIMUM_BLOCK_WEIGHT); | ||
| }) | ||
| .for_class(DispatchClass::Operational, |weights| { | ||
| weights.max_total = Some(MAXIMUM_BLOCK_WEIGHT); | ||
| // Operational transactions have an extra reserved space, so that they | ||
| // are included even if block reached `MAXIMUM_BLOCK_WEIGHT`. | ||
| weights.reserved = Some( | ||
| MAXIMUM_BLOCK_WEIGHT - NORMAL_DISPATCH_RATIO * MAXIMUM_BLOCK_WEIGHT, | ||
| ); | ||
| }) | ||
| .avg_block_initialization(AVERAGE_ON_INITIALIZE_RATIO) | ||
| .build_or_panic(); | ||
| } | ||
|
|
||
| /// [`WeightToFee`] should reflect cumulus/bridge-hub-* [`WeightToFee`] | ||
| pub struct WeightToFee; | ||
| impl WeightToFeePolynomial for WeightToFee { | ||
| type Balance = Balance; | ||
| fn polynomial() -> WeightToFeeCoefficients<Self::Balance> { | ||
| pub const CENTS: Balance = polkadot_runtime_constants::currency::CENTS; | ||
|
|
||
| // In BridgeHub, we map the extrinsic base weight to 1/100 CENT. | ||
| let p = CENTS; | ||
| let q = 100 * Balance::from(constants::ExtrinsicBaseWeight::get().ref_time()); | ||
| smallvec::smallvec![WeightToFeeCoefficient { | ||
| degree: 1, | ||
| negative: false, | ||
| coeff_frac: Perbill::from_rational(p % q, q), | ||
| coeff_integer: p / q, | ||
| }] | ||
| } | ||
| } | ||
|
|
||
| /// Public key of the chain account that may be used to verify signatures. | ||
| pub type AccountSigner = MultiSigner; | ||
|
|
||
| /// The address format for describing accounts. | ||
| pub type Address = MultiAddress<AccountId, ()>; |
This file contains hidden or 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 hidden or 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 hidden or 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 hidden or 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
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.