Skip to content

Commit

Permalink
chore: made setConsensusLayerData function to virtual for certora
Browse files Browse the repository at this point in the history
  • Loading branch information
iamsahu committed Oct 22, 2024
1 parent 2d248e8 commit 691b1a2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion contracts/src/components/OracleManager.1.sol
Original file line number Diff line number Diff line change
Expand Up @@ -256,7 +256,7 @@ abstract contract OracleManagerV1 is IOracleManagerV1 {
}

/// @inheritdoc IOracleManagerV1
function setConsensusLayerData(IOracleManagerV1.ConsensusLayerReport calldata _report) external {
function setConsensusLayerData(IOracleManagerV1.ConsensusLayerReport calldata _report) external virtual {
// only the oracle is allowed to call this endpoint
if (msg.sender != OracleAddress.get()) {
revert LibErrors.Unauthorized(msg.sender);
Expand Down

0 comments on commit 691b1a2

Please sign in to comment.