Skip to content

Commit

Permalink
add dones interfaces (#137)
Browse files Browse the repository at this point in the history
  • Loading branch information
hujw77 authored Mar 13, 2024
1 parent cdc9d5c commit 86a3aea
Showing 1 changed file with 5 additions and 0 deletions.
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);
}

0 comments on commit 86a3aea

Please sign in to comment.