Skip to content

Commit

Permalink
docs: update comments
Browse files Browse the repository at this point in the history
  • Loading branch information
MerlinEgalite committed Oct 4, 2023
1 parent 8a6bbf5 commit 7abc4f2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 6 deletions.
4 changes: 1 addition & 3 deletions src/chainlink/OracleFourFeeds.sol
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,7 @@ import {AggregatorV3Interface, DataFeedLib} from "./libraries/DataFeedLib.sol";
/// @title OracleFourFeeds
/// @author Morpho Labs
/// @custom:contact [email protected]
/// @notice Oracle using 4 Chainlink-compliant feeds to compute the price of a collateral token quoted in a borrowable
/// token within a Morpho Blue market.
/// @notice Morpho Blue oracle using 4 Chainlink-compliant feeds.
contract OracleFourFeeds is IOracle {
using DataFeedLib for AggregatorV3Interface;

Expand All @@ -28,7 +27,6 @@ contract OracleFourFeeds is IOracle {

/* CONSTRUCTOR */

/// @dev Initializes the contract.
/// @param firstBaseFeed First base feed. Pass address zero if the price = 1.
/// @param secondBaseFeed Second base feed. Pass address zero if the price = 1.
/// @param firstQuoteFeed Quote feed. Pass address zero if the price = 1.
Expand Down
4 changes: 1 addition & 3 deletions src/chainlink/OracleTwoFeeds.sol
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,7 @@ import {AggregatorV3Interface, DataFeedLib} from "./libraries/DataFeedLib.sol";
/// @title OracleTwoFeeds
/// @author Morpho Labs
/// @custom:contact [email protected]
/// @notice Oracle using 2 Chainlink-compliant feeds to compute the price of a collateral token quoted in a borrowable
/// token within a Morpho Blue market.
/// @notice Morpho Blue oracle using 2 Chainlink-compliant feeds.
contract OracleTwoFeeds is IOracle {
using DataFeedLib for AggregatorV3Interface;

Expand All @@ -24,7 +23,6 @@ contract OracleTwoFeeds is IOracle {

/* CONSTRUCTOR */

/// @dev Initializes the contract.
/// @param baseFeed Base feed. Pass address zero if the price = 1.
/// @param quoteFeed Quote feed. Pass address zero if the price = 1.
/// @param baseTokenDecimals Base token decimals.
Expand Down

0 comments on commit 7abc4f2

Please sign in to comment.