platform_version/version/fee/v3.rs
1use crate::version::fee::v2::FEE_VERSION2;
2use crate::version::fee::vote_resolution_fund_fees::v2::VOTE_RESOLUTION_FUND_FEES_VERSION2;
3use crate::version::fee::FeeVersion;
4
5/// Introduced in protocol version 14 (4.2).
6pub const FEE_VERSION3: FeeVersion = FeeVersion {
7 // Contested contributions use the active protocol, so unchanged storage
8 // rates retain the historical fee_version_number inherited from FEE_VERSION2.
9 vote_resolution_fund_fees: VOTE_RESOLUTION_FUND_FEES_VERSION2,
10 ..FEE_VERSION2
11};