diff --git a/src/core/ExocoreGateway.sol b/src/core/ExocoreGateway.sol index 7f8ab8eb..782e4868 100644 --- a/src/core/ExocoreGateway.sol +++ b/src/core/ExocoreGateway.sol @@ -525,6 +525,7 @@ contract ExocoreGateway is whenNotPaused { bytes memory payload = abi.encodePacked(act, actionArgs); + bytes memory options = _buildOptions(srcChainId, act); MessagingFee memory fee = _quote(srcChainId, payload, options, false); @@ -538,6 +539,7 @@ contract ExocoreGateway is /// @inheritdoc IExocoreGateway function quote(uint32 srcChainId, bytes calldata _message) public view returns (uint256 nativeFee) { Action act = Action(uint8(_message[0])); + bytes memory options = _buildOptions(srcChainId, act); MessagingFee memory fee = _quote(srcChainId, _message, options, false);