Skip to content

Commit

Permalink
fix: Fix MockAggregator code
Browse files Browse the repository at this point in the history
  • Loading branch information
miguelmtzinf committed Dec 27, 2021
1 parent 44af5fe commit 67d29f5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion contracts/mocks/oracle/CLAggregators/MockAggregator.sol
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ pragma solidity 0.8.10;
contract MockAggregator {
int256 private _latestAnswer;

event AnswerUpdated(int256 indexed current, uint256 indexed roundId, uint256 timestamp);
event AnswerUpdated(int256 indexed current, uint256 indexed roundId, uint256 updatedAt);

constructor(int256 initialAnswer) {
_latestAnswer = initialAnswer;
Expand Down

0 comments on commit 67d29f5

Please sign in to comment.