diff --git a/pallets/slp/src/agents/moonbeam_agent/types.rs b/pallets/slp/src/agents/moonbeam_agent/types.rs index 1725d9788..d9b63e844 100644 --- a/pallets/slp/src/agents/moonbeam_agent/types.rs +++ b/pallets/slp/src/agents/moonbeam_agent/types.rs @@ -62,21 +62,21 @@ pub enum MoonbeamUtilityCall { pub enum MoonbeamParachainStakingCall { #[codec(index = 17)] Delegate(H160, BalanceOf, u32, u32), - #[codec(index = 18)] - ScheduleLeaveDelegators, #[codec(index = 19)] - ExecuteLeaveDelegators(H160, u32), + ScheduleLeaveDelegators, #[codec(index = 20)] - CancelLeaveDelegators, + ExecuteLeaveDelegators(H160, u32), #[codec(index = 21)] - ScheduleRevokeDelegation(H160), + CancelLeaveDelegators, #[codec(index = 22)] - DelegatorBondMore(H160, BalanceOf), + ScheduleRevokeDelegation(H160), #[codec(index = 23)] - ScheduleDelegatorBondLess(H160, BalanceOf), + DelegatorBondMore(H160, BalanceOf), #[codec(index = 24)] - ExecuteDelegationRequest(H160, H160), + ScheduleDelegatorBondLess(H160, BalanceOf), #[codec(index = 25)] + ExecuteDelegationRequest(H160, H160), + #[codec(index = 26)] CancelDelegationRequest(H160), }