Skip to content

Commit

Permalink
Update checkAllowedToSendMessage
Browse files Browse the repository at this point in the history
  • Loading branch information
DimaStebaev committed Oct 7, 2024
1 parent a2f2db5 commit 7850f50
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion contracts/schain/ICommunityLocker.sol
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@

pragma solidity >=0.8.19 <0.9.0;

import {SchainHash} from "../DomainTypes.sol";
import "../IMessageReceiver.sol";

import "./IMessageProxyForSchain.sol";
Expand All @@ -34,7 +35,7 @@ interface ICommunityLocker is IMessageReceiver {
ITokenManagerLinker newTokenManagerLinker,
address newCommunityPool
) external;
function checkAllowedToSendMessage(bytes32 chainHash, address receiver) external;
function checkAllowedToSendMessage(SchainHash chainHash, address receiver) external;
function setTimeLimitPerMessage(string memory chainName, uint256 newTimeLimitPerMessage) external;
function setGasPrice(
uint256 gasPrice,
Expand Down

0 comments on commit 7850f50

Please sign in to comment.