Adds `receive()` function in `MockRelayerIntegration`.

This commit is contained in:
Sebastián Claudio Nale 2023-02-15 19:23:11 -03:00 committed by scnale
parent b0e1378957
commit 1003717cdb
1 changed files with 2 additions and 0 deletions

View File

@ -271,4 +271,6 @@ contract MockRelayerIntegration is IWormholeReceiver {
furtherInstructions.chains = chains;
furtherInstructions.gasLimits = gasLimits;
}
receive() external payable {}
}