From 162884f00ae93b24410727a08d235b3781201b42 Mon Sep 17 00:00:00 2001 From: nogo <110664798+0xnogo@users.noreply.github.com> Date: Mon, 4 Nov 2024 17:34:33 +0400 Subject: [PATCH] Fix weth price decimal (#15090) --- deployment/ccip/test_helpers.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/deployment/ccip/test_helpers.go b/deployment/ccip/test_helpers.go index 55bbbcf91cb..97d311c4240 100644 --- a/deployment/ccip/test_helpers.go +++ b/deployment/ccip/test_helpers.go @@ -274,7 +274,7 @@ const ( var ( MockLinkPrice = big.NewInt(5e18) - MockWethPrice = big.NewInt(9e18) + MockWethPrice = big.NewInt(9e8) // MockDescriptionToTokenSymbol maps a mock feed description to token descriptor MockDescriptionToTokenSymbol = map[string]TokenSymbol{ MockLinkAggregatorDescription: LinkSymbol,