Skip to content

Commit

Permalink
Update IMessageProxy
Browse files Browse the repository at this point in the history
  • Loading branch information
DimaStebaev committed Oct 9, 2024
1 parent fc2ff10 commit eb22baa
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions contracts/IMessageProxy.sol
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@

pragma solidity >=0.8.19 <0.9.0;

import { IMessageListener } from "./IMessageListener.sol";
import { IMessageListener, SchainHash } from "./IMessageListener.sol";


interface IMessageProxy is IMessageListener {
Expand All @@ -34,7 +34,7 @@ interface IMessageProxy is IMessageListener {
function removeExtraContract(string memory schainName, address extraContract) external;
function setVersion(string calldata newVersion) external;
function isContractRegistered(

Check warning on line 36 in contracts/IMessageProxy.sol

View workflow job for this annotation

GitHub Actions / test

GC: Named return value is missing - Index 0
bytes32 schainHash,
SchainHash schainHash,
address contractAddress
) external view returns (bool);
function getContractRegisteredLength(bytes32 schainHash) external view returns (uint256);

Check warning on line 40 in contracts/IMessageProxy.sol

View workflow job for this annotation

GitHub Actions / test

GC: Named return value is missing - Index 0
Expand Down

0 comments on commit eb22baa

Please sign in to comment.