synapsecns/sanguine

View on GitHub
packages/contracts-rfq/test/mocks/MockRevertingRecipient.sol

Summary

Maintainability
Test Coverage
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.17;

// solhint-disable no-empty-blocks
contract MockRevertingRecipient {
    receive() external payable {
        revert("GM");
    }

    /// @notice We include an empty "test" function so that this contract does not appear in the coverage report.
    function testMockRevertingRecipient() external {}
}