diff --git a/integration-tests/ccip-tests/testconfig/tomls/ccip1.4-stress-2024-06-27/baseline.toml b/integration-tests/ccip-tests/testconfig/tomls/ccip1.4-stress-2024-06-27/baseline.toml index 7ca3b16cf0..e58a2bc951 100644 --- a/integration-tests/ccip-tests/testconfig/tomls/ccip1.4-stress-2024-06-27/baseline.toml +++ b/integration-tests/ccip-tests/testconfig/tomls/ccip1.4-stress-2024-06-27/baseline.toml @@ -152,7 +152,7 @@ BatchGasLimit = 11000000 TimeoutForPriceUpdate = '15m' NoOfTokensPerChain = 60 NoOfTokensWithDynamicPrice = 15 -DynamicPriceUpdateInterval ='5m' +DynamicPriceUpdateInterval ='15s' CCIPOwnerTokens = true [CCIP.Groups.load.LoadProfile] diff --git a/integration-tests/ccip-tests/testsetups/test_env.go b/integration-tests/ccip-tests/testsetups/test_env.go index 38e8c03a3a..fa9a9ab230 100644 --- a/integration-tests/ccip-tests/testsetups/test_env.go +++ b/integration-tests/ccip-tests/testsetups/test_env.go @@ -491,8 +491,8 @@ func DeployEnvironments( "forkComputeUnitsPerSecond": anvilConfig.ComputePerSecond, "forkNoRateLimit": anvilConfig.RateLimitDisabled, "blocksToKeepInMemory": anvilConfig.BlocksToKeepInMem, - "blockGasLimit": anvilConfig.BlockGaslimit, - "baseFee": anvilConfig.BaseFee, + "blockGasLimit": fmt.Sprintf("%d", anvilConfig.BlockGaslimit), + "baseFee": fmt.Sprintf("%d", anvilConfig.BaseFee), }, "resources": testInputs.GethResourceProfile, },