summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPavel Zbitskiy <65323360+algorandskiy@users.noreply.github.com>2023-12-14 13:56:33 -0500
committerGitHub <noreply@github.com>2023-12-14 13:56:33 -0500
commitec60b1130b8d31c5f4d49551bf90d4d5092cd693 (patch)
treeadae707099ec1dc563990e3b5cae42afaaaf3935
parentb5ad8d0c9d040fce4c53cd5ee952ce8ef7ea6a2e (diff)
tests: custom recipe tweaks (#5869)
-rwxr-xr-xtest/testdata/deployednettemplates/generate-recipe/generate_network.py1
-rw-r--r--test/testdata/deployednettemplates/recipes/custom/configs/node.json2
2 files changed, 2 insertions, 1 deletions
diff --git a/test/testdata/deployednettemplates/generate-recipe/generate_network.py b/test/testdata/deployednettemplates/generate-recipe/generate_network.py
index 0a92aed20..254172aa4 100755
--- a/test/testdata/deployednettemplates/generate-recipe/generate_network.py
+++ b/test/testdata/deployednettemplates/generate-recipe/generate_network.py
@@ -70,6 +70,7 @@ def build_net(template_path, netgoal_params):
def build_genesis(template_path, netgoal_params, template_dict):
args = [
'-t', 'genesis',
+ '--last-part-key-round', str(100_000),
'-o', f"{template_path}/generated/genesis.json"
]
args.extend(netgoal_params)
diff --git a/test/testdata/deployednettemplates/recipes/custom/configs/node.json b/test/testdata/deployednettemplates/recipes/custom/configs/node.json
index 547f38e19..4afe82a04 100644
--- a/test/testdata/deployednettemplates/recipes/custom/configs/node.json
+++ b/test/testdata/deployednettemplates/recipes/custom/configs/node.json
@@ -19,7 +19,7 @@
"EnableMetrics": true,
"MetricsURI": "{{MetricsURI}}",
"ConfigJSONOverride": "{ \"TxPoolExponentialIncreaseFactor\": 1, \"DNSBootstrapID\": \"<network>.algodev.network\", \"DeadlockDetection\": -1, \"PeerPingPeriodSeconds\": 30, \"EnableAgreementReporting\": true, \"EnableAgreementTimeMetrics\": true, \"EnableAssembleStats\": true, \"EnableProcessBlockStats\": true, \"BaseLoggerDebugLevel\": 4, \"EnableProfiler\": true, \"EnableRuntimeMetrics\": true, \"CadaverSizeTarget\": 0 }",
- "FractionApply": 0.01
+ "FractionApply": 0.1
}
]
}