Skip to content

Commit

Permalink
chore!: fix MAD Precompile function names (#859)
Browse files Browse the repository at this point in the history
  • Loading branch information
shekohex authored Dec 27, 2024
1 parent 5dc9766 commit 12859f7
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions precompiles/multi-asset-delegation/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -242,7 +242,7 @@ where
Ok(())
}

#[precompile::public("schedule_withdraw(uint256,address,uint256)")]
#[precompile::public("scheduleWithdraw(uint256,address,uint256)")]
fn schedule_withdraw(
handle: &mut impl PrecompileHandle,
asset_id: U256,
Expand Down Expand Up @@ -275,7 +275,7 @@ where
Ok(())
}

#[precompile::public("cancel_withdraw(uint256,address,uint256)")]
#[precompile::public("cancelWithdraw(uint256,address,uint256)")]
fn cancel_withdraw(
handle: &mut impl PrecompileHandle,
asset_id: U256,
Expand Down Expand Up @@ -351,7 +351,7 @@ where
Ok(())
}

#[precompile::public("schedule_delegator_unstake(bytes32,uint256,address,uint256)")]
#[precompile::public("scheduleDelegatorUnstake(bytes32,uint256,address,uint256)")]
fn schedule_delegator_unstake(
handle: &mut impl PrecompileHandle,
operator: H256,
Expand Down

0 comments on commit 12859f7

Please sign in to comment.