Skip to content

Commit

Permalink
lint: lint fixes on redstone mock adapter interface
Browse files Browse the repository at this point in the history
  • Loading branch information
evandrosaturnino committed May 16, 2024
1 parent 6f2931a commit 1abeeb0
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions packages/contracts/contracts/BOB/IRedstoneAdapter.sol
Original file line number Diff line number Diff line change
Expand Up @@ -14,12 +14,12 @@ interface IRedstoneAdapter {
*/
function getValueForDataFeed(bytes32) external view returns (uint256);

/**
* @notice Returns details for the given round and data feed
* @return dataFeedValue
* @return roundDataTimestamp
* @return roundBlockTimestamp
*/
/**
* @notice Returns details for the given round and data feed
* @return dataFeedValue
* @return roundDataTimestamp
* @return roundBlockTimestamp
*/
function getRoundDataFromAdapter(bytes32, uint256) external view returns (uint256 dataFeedValue, uint128 roundDataTimestamp, uint128 roundBlockTimestamp);

/**
Expand Down

0 comments on commit 1abeeb0

Please sign in to comment.