Skip to content

Commit

Permalink
adjust-moonriver-parachain-staking-calls-number (#819)
Browse files Browse the repository at this point in the history
  • Loading branch information
herryho committed Nov 9, 2022
1 parent b51816f commit 5a49cc4
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions pallets/slp/src/agents/moonbeam_agent/types.rs
Original file line number Diff line number Diff line change
Expand Up @@ -62,21 +62,21 @@ pub enum MoonbeamUtilityCall<MoonbeamCall> {
pub enum MoonbeamParachainStakingCall<T: Config> {
#[codec(index = 17)]
Delegate(H160, BalanceOf<T>, 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<T>),
ScheduleRevokeDelegation(H160),
#[codec(index = 23)]
ScheduleDelegatorBondLess(H160, BalanceOf<T>),
DelegatorBondMore(H160, BalanceOf<T>),
#[codec(index = 24)]
ExecuteDelegationRequest(H160, H160),
ScheduleDelegatorBondLess(H160, BalanceOf<T>),
#[codec(index = 25)]
ExecuteDelegationRequest(H160, H160),
#[codec(index = 26)]
CancelDelegationRequest(H160),
}

Expand Down

0 comments on commit 5a49cc4

Please sign in to comment.