Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@
"eslint"
],
"*.sol": [
"prettier --write",
"prettier --write --plugin=prettier-plugin-solidity",
"solhint"
]
},
Expand Down
8 changes: 4 additions & 4 deletions public/samples/DataFeeds/DataConsumerV3.sol
Original file line number Diff line number Diff line change
Expand Up @@ -39,10 +39,10 @@ contract DataConsumerV3 {
function getChainlinkDataFeedLatestAnswer() public view returns (int) {
// prettier-ignore
(
/* uint80 roundID */,
int answer,
/*uint startedAt*/,
/*uint timeStamp*/,
/* uint80 roundId */,
int256 answer,
/*uint256 startedAt*/,
/*uint256 updatedAt*/,
/*uint80 answeredInRound*/
) = dataFeed.latestRoundData();
return answer;
Expand Down
Loading