We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 15fcbab commit a159a09Copy full SHA for a159a09
contracts/OracleMock.sol
@@ -93,7 +93,7 @@ contract OracleMock is OracleInterface, Ownable {
93
94
// Returns the most recent price-time pair for a particular feed.
95
function _mostRecentPriceTime(FeedInfo storage feedInfo) private view returns (uint publishTime, int256 price) {
96
- // Note: if `latestPublushTime` is still 0 (no prices have been written to this feed), then `price` will be 0
+ // Note: if `latestPublishTime` is still 0 (no prices have been written to this feed), then `price` will be 0
97
// (the default value for mapped values).
98
return (feedInfo.latestPublishTime, feedInfo.prices[feedInfo.latestPublishTime]);
99
}
0 commit comments