assertGeDecimal

Signature

function assertGeDecimal(uint256 left, uint256 right, uint256 decimals) internal
function assertGeDecimal(uint256 left, uint256 right, uint256 decimals, string memory err) internal;
function assertGeDecimal(int256 left, int256 right, uint256 decimals) internal;
function assertGeDecimal(int256 left, int256 right, uint256 decimals, string memory err) internal;

Description

Asserts left is greater than or equal to right.

left and right are formatted with decimals in the revert string.

Optionally includes an error message in the revert string.

SEE ALSO