Skip to content

Commit

Permalink
fix: Return a uint16 instead of a uint256 from the getFeeInBasisPoint…
Browse files Browse the repository at this point in the history
…s function
  • Loading branch information
mgnfy-view committed Oct 27, 2024
1 parent 8569f1b commit 5bd3855
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/PayStreams.sol
Original file line number Diff line number Diff line change
Expand Up @@ -361,7 +361,7 @@ contract PayStreams is Ownable, IPayStreams {
* @notice Gets the fee value for streaming in basis points.
* @return The fee value for streaming in basis points.
*/
function getFeeInBasisPoints() external view returns (uint256) {
function getFeeInBasisPoints() external view returns (uint16) {
return s_feeInBasisPoints;
}

Expand Down

0 comments on commit 5bd3855

Please sign in to comment.