The home for Hyperlane core contracts, sdk packages, and other infrastructure
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
hyperlane-monorepo/solidity/optics-core/contracts/test/TestCommon.sol

31 lines
847 B

// SPDX-License-Identifier: MIT OR Apache-2.0
pragma solidity >=0.6.11;
import "../Common.sol";
contract TestCommon is Common {
constructor(uint32 _localDomain, address _updater) Common(_localDomain) {
initialize(_updater);
}
function setUpdater(address _updater) external {
updater = _updater;
}
function testIsUpdaterSignature(
bytes32 _oldRoot,
bytes32 _newRoot,
bytes memory _signature
) external view returns (bool) {
return _isUpdaterSignature(_oldRoot, _newRoot, _signature);
}
/// @notice Hash of Home's domain concatenated with "OPTICS"
function homeDomainHash() public view override returns (bytes32) {
return keccak256(abi.encodePacked(localDomain, "OPTICS"));
}
function _fail() internal override {
_setFailed();
}
}