From 585626c1fcfba756df908f98b500d178015a2320 Mon Sep 17 00:00:00 2001 From: derpy-duck <115193320+derpy-duck@users.noreply.github.com> Date: Thu, 16 Feb 2023 15:56:57 +0000 Subject: [PATCH] Make the '600000' hardcode safer --- ethereum/forge-test/CoreRelayer.t.sol | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ethereum/forge-test/CoreRelayer.t.sol b/ethereum/forge-test/CoreRelayer.t.sol index ef4b445..32234f3 100644 --- a/ethereum/forge-test/CoreRelayer.t.sol +++ b/ethereum/forge-test/CoreRelayer.t.sol @@ -1077,7 +1077,7 @@ contract TestCoreRelayer is Test { DeliveryStackTooDeep memory stack; if ( - uint256(1) * feeParams.targetNativePrice * gasParams.targetGasPrice + uint256(1) * feeParams.targetNativePrice * gasParams.targetGasPrice * 10 < uint256(1) * feeParams.sourceNativePrice * gasParams.sourceGasPrice ) { stack.paymentNotEnough =