From 556e7358f52583710b1fc03f62ff60ef39a95130 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Friedemann=20F=C3=BCrst?= Date: Tue, 27 Feb 2024 17:33:49 +0100 Subject: [PATCH] add draft config --- integration-tests/benchmark/keeper_test.go | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/integration-tests/benchmark/keeper_test.go b/integration-tests/benchmark/keeper_test.go index 5ca52d26a9e..e9c7f07db11 100644 --- a/integration-tests/benchmark/keeper_test.go +++ b/integration-tests/benchmark/keeper_test.go @@ -150,7 +150,7 @@ func TestAutomationBenchmark(t *testing.T) { PaymentPremiumPPB: uint32(0), FlatFeeMicroLINK: uint32(40000), BlockCountPerTurn: big.NewInt(100), - CheckGasLimit: uint32(45_000_000), //45M + CheckGasLimit: uint32(45_000_000), // 45M StalenessSeconds: big.NewInt(90_000), GasCeilingMultiplier: uint16(2), MaxPerformGas: uint32(*config.Keeper.Common.MaxPerformGas), @@ -251,13 +251,13 @@ func getNetworkConfig(networkName string, config *tc.TestConfig) NetworkConfig { var networkConfig = map[string]NetworkConfig{ "SimulatedGeth": { - upkeepSLA: int64(120), //2 minutes + upkeepSLA: int64(120), // 2 minutes blockTime: time.Second, deltaStage: 30 * time.Second, funding: big.NewFloat(100_000), }, "geth": { - upkeepSLA: int64(120), //2 minutes + upkeepSLA: int64(120), // 2 minutes blockTime: time.Second, deltaStage: 30 * time.Second, funding: big.NewFloat(100_000), @@ -302,6 +302,11 @@ var networkConfig = map[string]NetworkConfig{ blockTime: time.Second, deltaStage: 20 * time.Second, }, + "Quorum": { + upkeepSLA: int64(20), + blockTime: 12 * time.Second, + deltaStage: 30 * time.Second, + }, } func SetupAutomationBenchmarkEnv(t *testing.T, keeperTestConfig types.KeeperBenchmarkTestConfig) (*environment.Environment, blockchain.EVMNetwork) {