Skip to content
Merged
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
5 changes: 5 additions & 0 deletions src/interfaces/IORMP.sol
Original file line number Diff line number Diff line change
Expand Up @@ -69,4 +69,9 @@ interface IORMP {
function setAppConfig(address oracle, address relayer) external;

function defaultUC() external view returns (UC memory);

/// @dev Check the msg if it is dispatched.
/// @param msgHash Hash of the checked message.
/// @return Return the dispatched result of the checked message.
function dones(bytes32 msgHash) external view returns (bool);
}