Add LowFeeValidation Nomination (#15098)
This commit is contained in:
@ -121,6 +121,15 @@ pub mod full_inflation {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
pub mod lowfeevalidation {
|
||||||
|
pub mod vote {
|
||||||
|
solana_sdk::declare_id!("DcbTexLyN3fM3Y6UtteiYEpgDPbr3PrapczHYFagTPci");
|
||||||
|
}
|
||||||
|
pub mod enable {
|
||||||
|
solana_sdk::declare_id!("2wftmZhmArxv3eKjoRz4ffw385eZunydQU3Ruku1kvRX");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
pub mod rockx {
|
pub mod rockx {
|
||||||
pub mod vote {
|
pub mod vote {
|
||||||
solana_sdk::declare_id!("8DaPPAGV9mf1YCHzrettgSMFcAT1ePtS3GSGfYka9Rjw");
|
solana_sdk::declare_id!("8DaPPAGV9mf1YCHzrettgSMFcAT1ePtS3GSGfYka9Rjw");
|
||||||
@ -318,6 +327,8 @@ lazy_static! {
|
|||||||
(full_inflation::diman::enable::id(), "Full inflation enabled by Diman"),
|
(full_inflation::diman::enable::id(), "Full inflation enabled by Diman"),
|
||||||
(full_inflation::p2pvalidator::vote::id(), "Community vote allowing p2pvalidator to enable full inflation"),
|
(full_inflation::p2pvalidator::vote::id(), "Community vote allowing p2pvalidator to enable full inflation"),
|
||||||
(full_inflation::p2pvalidator::enable::id(), "Full inflation enabled by p2pvalidator"),
|
(full_inflation::p2pvalidator::enable::id(), "Full inflation enabled by p2pvalidator"),
|
||||||
|
(full_inflation::lowfeevalidation::vote::id(), "Community vote allowing lowfeevalidation to enable full inflation"),
|
||||||
|
(full_inflation::lowfeevalidation::enable::id(), "Full inflation enabled by lowfeevalidation"),
|
||||||
(full_inflation::rockx::vote::id(), "Community vote allowing rockx to enable full inflation"),
|
(full_inflation::rockx::vote::id(), "Community vote allowing rockx to enable full inflation"),
|
||||||
(full_inflation::rockx::enable::id(), "Full inflation enabled by rockx"),
|
(full_inflation::rockx::enable::id(), "Full inflation enabled by rockx"),
|
||||||
/*************** ADD NEW FEATURES HERE ***************/
|
/*************** ADD NEW FEATURES HERE ***************/
|
||||||
@ -383,6 +394,10 @@ lazy_static! {
|
|||||||
vote_id: full_inflation::p2pvalidator::vote::id(),
|
vote_id: full_inflation::p2pvalidator::vote::id(),
|
||||||
enable_id: full_inflation::p2pvalidator::enable::id(),
|
enable_id: full_inflation::p2pvalidator::enable::id(),
|
||||||
},
|
},
|
||||||
|
FullInflationFeaturePair {
|
||||||
|
vote_id: full_inflation::lowfeevalidation::vote::id(),
|
||||||
|
enable_id: full_inflation::lowfeevalidation::enable::id(),
|
||||||
|
},
|
||||||
FullInflationFeaturePair {
|
FullInflationFeaturePair {
|
||||||
vote_id: full_inflation::rockx::vote::id(),
|
vote_id: full_inflation::rockx::vote::id(),
|
||||||
enable_id: full_inflation::rockx::enable::id(),
|
enable_id: full_inflation::rockx::enable::id(),
|
||||||
|
Reference in New Issue
Block a user