Files
2025-12-29 00:45:23 -08:00

21 lines
534 B
JSON

{
"$schema": "http://json-schema.org/draft-07/schema#",
"type": "object",
"additionalProperties": false,
"properties": {
"MERKLETREE_ENABLED": {
"type": "boolean",
"default": true,
"x-aliases": ["SAVE_MERKLETREE", "USE_MERKLETREE"],
"description": "Enable merkle tree hash generation"
},
"MERKLETREE_TIMEOUT": {
"type": "integer",
"default": 30,
"minimum": 5,
"x-fallback": "TIMEOUT",
"description": "Timeout for merkle tree generation in seconds"
}
}
}