Skip to content

Commit

Permalink
ON-814: pr fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
Daniel Lima committed Apr 22, 2024
1 parent 80909a4 commit 38d1f8b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion contracts/libraries/LibNftRentalMarketplace.sol
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ library LibNftRentalMarketplace {
* @dev This function is used to hash the rental offer struct
* @param _offer The rental offer struct to be hashed.
*/
function hashRentalOffer(RentalOffer memory _offer) public pure returns (bytes32) {
function hashRentalOffer(RentalOffer memory _offer) external pure returns (bytes32) {
return keccak256(abi.encode(_offer));
}

Expand Down

0 comments on commit 38d1f8b

Please sign in to comment.