-
Notifications
You must be signed in to change notification settings - Fork 2.7k
WIP: Transaction Fee Multiplier #2847
Conversation
|
It looks like @4meta5 hasn't signed our Contributor License Agreement, yet.
You can read and sign our full Contributor License Agreement at the following URL: https://cla.parity.io Once you've signed, please reply to this thread with Many thanks, Parity Technologies CLA Bot |
1 similar comment
|
It looks like @4meta5 hasn't signed our Contributor License Agreement, yet.
You can read and sign our full Contributor License Agreement at the following URL: https://cla.parity.io Once you've signed, please reply to this thread with Many thanks, Parity Technologies CLA Bot |
|
[clabot:check] |
|
It looks like @4meta5 signed our Contributor License Agreement. 👍 Many thanks, Parity Technologies CLA Bot |
1 similar comment
|
It looks like @4meta5 signed our Contributor License Agreement. 👍 Many thanks, Parity Technologies CLA Bot |
| /// Total length in bytes for all extrinsics put together, for the current block. | ||
| AllExtrinsicsLen: Option<u32>; | ||
| /// Total weight for all extrinsics put together, for the current block. | ||
| AllExtrinsicsWeight: Option<u32>; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is already included in the old PR. it is more or less stable, so you should/could merge it in here now.
| pub fn all_extrinsics_len() -> u32 { | ||
| <AllExtrinsicsLen<T>>::get().unwrap_or_default() | ||
| /// Gets a total weight of all executed extrinsics. | ||
| pub fn all_extrinsics_weight() -> u32 { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
same; already exists.
Implementation of the slow fee mechanism described in detail here.
This addresses #2430 and builds on top of #2799