Skip to content

Instantly share code, notes, and snippets.

@percybolmer
Last active May 8, 2021 05:32
Show Gist options
  • Save percybolmer/5496703f32904b0b429b911f5247d40b to your computer and use it in GitHub Desktop.
Save percybolmer/5496703f32904b0b429b911f5247d40b to your computer and use it in GitHub Desktop.
/**
* @notice
* hasStake is used to check if a account has stakes and returns the amount if has staked
*/
function hasStake(address _staker) public view returns(uint256){
return stakes[_staker];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment