Skip to content

Commit

Permalink
ON-812: prettier
Browse files Browse the repository at this point in the history
  • Loading branch information
Daniel Lima committed Apr 22, 2024
1 parent e984c68 commit d85c4da
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions contracts/libraries/LibNftRentalMarketplace.sol
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ library LibNftRentalMarketplace {
require(_nonceDeadline == 0, 'NftRentalMarketplace: nonce already used');
}

/**
/**
* @dev All values needs to be in wei.
* @param _amount The amount to calculate the percentage from.
* @param _percentage The percentage to calculate.
Expand All @@ -100,7 +100,7 @@ library LibNftRentalMarketplace {
return (_amount * _percentage) / MAX_PERCENTAGE;
}

/**
/**
* @notice Transfers the fees.
* @dev The fee token address should be approved before calling this function.
* @param _feeTokenAddress The fee token address.
Expand Down Expand Up @@ -212,5 +212,4 @@ library LibNftRentalMarketplace {
);
}
}

}

0 comments on commit d85c4da

Please sign in to comment.