diff --git a/specs/interop/predeploys.md b/specs/interop/predeploys.md index 7e490625a..8f5f5f203 100644 --- a/specs/interop/predeploys.md +++ b/specs/interop/predeploys.md @@ -390,7 +390,7 @@ which is used to track whether the message has successfully been relayed. It also emits a `SentMessage` event with the necessary metadata to execute when relayed on the destination chain. ```solidity -event SentMessage(uint256 indexed destination, address indexed target, uint256 indexed messageNonce, address sender, bytes message, bytes context); +event SentMessage(uint256 indexed destination, address indexed target, uint256 indexed messageNonce, address sender, bytes message, bytes originContext); ``` An explicit `_destination` chain and `nonce` are used to ensure that the message can only be played on a single remote @@ -423,7 +423,7 @@ mapping prior to emitting the `SentMessage` event. address _sender, address _target, bytes calldata _message, - bytes calldata _context + bytes calldata _originContext ) external; ```