Skip to content

Commit b4eac58

Browse files
committed
feat: set remote implementation virtual
1 parent f9de918 commit b4eac58

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/IncentivizedMessageEscrow.sol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -265,7 +265,7 @@ abstract contract IncentivizedMessageEscrow is IIncentivizedMessageEscrow, Bytes
265265
* are valid for sending (say hex"0x01" which may be read as address(uint160(1))), they break acks / delivery.
266266
* If you want to disable a specific route, set implementation to hex"00" (DISABLE_ROUTE_IMPLEMENTATION).
267267
*/
268-
function setRemoteImplementation(bytes32 destinationIdentifier, bytes calldata implementation) external {
268+
function setRemoteImplementation(bytes32 destinationIdentifier, bytes calldata implementation) external virtual {
269269
if (implementationAddressHash[msg.sender][destinationIdentifier] != bytes32(0)) revert ImplementationAddressAlreadySet(
270270
implementationAddress[msg.sender][destinationIdentifier]
271271
);

0 commit comments

Comments
 (0)