Skip to content

Commit

Permalink
Emit event in the external OEV update
Browse files Browse the repository at this point in the history
  • Loading branch information
bbenligiray committed Aug 14, 2024
1 parent 5ab9e28 commit da0c027
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions contracts/api3-server-v1/Api3ServerV1OevExtension.sol
Original file line number Diff line number Diff line change
Expand Up @@ -151,6 +151,12 @@ contract Api3ServerV1OevExtension is
updateAllowance.endTimestamp,
signedData
);
emit UpdatedDappOevDataFeed(
dappId,
baseDataFeedId,
updatedValue,
updatedTimestamp
);
}

function simulateDappOevDataFeedUpdate(
Expand Down Expand Up @@ -327,11 +333,5 @@ contract Api3ServerV1OevExtension is
timestamp: updatedTimestamp
});
}
emit UpdatedDappOevDataFeed(
dappId,
baseDataFeedId,
updatedValue,
updatedTimestamp
);
}
}

0 comments on commit da0c027

Please sign in to comment.