Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save percybolmer/05dea958c597fa8ec8fd7bb695bbee9d to your computer and use it in GitHub Desktop.
Save percybolmer/05dea958c597fa8ec8fd7bb695bbee9d to your computer and use it in GitHub Desktop.
Crypto-BEP20-DevToken-WithdrawStake
/**
* @notice withdrawStake is used to withdraw stakes from the account holder
*/
function withdrawStake(uint256 amount, uint256 stake_index) public {
uint256 amount_to_mint = _withdrawStake(amount, stake_index);
// Return staked tokens to user
_mint(msg.sender, amount_to_mint);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment