Skip to content

Commit a875ce6

Browse files
bruce-rileyevan-gray
authored andcommitted
evm: Update IVaaV1Receiver
1 parent bd81d1b commit a875ce6

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

evm/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,7 @@ executor.requestExecution{value: executorArgs.value}(
126126
Your contract must implement the following function.
127127

128128
```solidity
129-
function receiveMessage(bytes calldata encodedTransferMessage) public payable
129+
function executeVAAv1(bytes calldata encodedTransferMessage) public payable
130130
```
131131

132132
#### v1 NTT Execution

evm/src/interfaces/IVaaV1Receiver.sol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,5 +5,5 @@ pragma solidity ^0.8.19;
55
interface IVaaV1Receiver {
66
/// @notice Receive an attested message from the executor relayer.
77
/// @param msg The attested message payload.
8-
function receiveMessage(bytes memory msg) external payable;
8+
function executeVAAv1(bytes memory msg) external payable;
99
}

0 commit comments

Comments
 (0)