From c7332c3f7588352b70511e7969eee03ad04501bc Mon Sep 17 00:00:00 2001 From: Vincent Geddes <117534+vgeddes@users.noreply.github.com> Date: Mon, 21 Oct 2024 13:02:56 +0200 Subject: [PATCH] improve docs --- contracts/src/interfaces/IGateway.sol | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/contracts/src/interfaces/IGateway.sol b/contracts/src/interfaces/IGateway.sol index 07414ce1b1..3bbc072afe 100644 --- a/contracts/src/interfaces/IGateway.sol +++ b/contracts/src/interfaces/IGateway.sol @@ -185,14 +185,14 @@ interface IGateway { // On Asset Hub, the assets will be received into the assets holding register. // // The `xcm` should contain the necessary instructions to: - // 1. Pay XCM execution fees, either from assets in holding, + // 1. Pay XCM execution fees for `xcm`, either from assets in holding, // or from the sovereign account of `msg.sender`. // 2. Handle the assets in holding, either depositing them into // some account, or forwarding them to another destination. // - // To incentivize message delivery, some amount of ether should be passed as well. - // will also be sent across the bridge as WETH, and given to the relayer as a reward. This - // amount should at least cover the total cost of delivery to Polkadot, + // To incentivize message delivery, some amount of ether must be passed and should + // at least cover the total cost of delivery to Polkadot. This ether be sent across + // the bridge as WETH, and given to the relayer as compensation and incentivization. // function sendMessage(bytes calldata xcm, bytes[] calldata assets) external payable;