Skip to content

Commit

Permalink
docs: ✏️ update NatSpec
Browse files Browse the repository at this point in the history
  • Loading branch information
ADISAKBOONMARK committed Feb 23, 2025
1 parent 7f294be commit b3822f9
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions contracts/tokens/ERC20/ERC20EXPBase.sol
Original file line number Diff line number Diff line change
Expand Up @@ -455,10 +455,10 @@ abstract contract ERC20EXPBase is Context, IERC20Errors, IERC20Metadata, IERC781
}

/**
* @notice Retrieves the total balance stored at a specific block.
* @dev This function returns the balance of the given block from the internal `_worldStateBalances` mapping.
* @param pointer The block number for which the balance is being queried.
* @return balance The total balance stored at the given block number.
* @notice Retrieves the total balance stored at a specific pointer.
* @dev This function returns the balance of the given pointer from the internal `_worldStateBalances` mapping.
* @param pointer The reference point for which the balance is being queried.
* @return balance The total balance stored at the given pointer.
*/
function getWorldStateBalance(uint256 pointer) external view virtual returns (uint256) {
return _worldStateBalances[pointer];
Expand Down

0 comments on commit b3822f9

Please sign in to comment.