Enforce sapling activation at height=1

We used to have the -ac_sapling option which defaulted to one, now we
enforce that it must always be one, it cannot be changed and is no
longer a CLI option.
This commit is contained in:
Duke
2024-01-21 16:59:09 -05:00
parent 27db254d68
commit e49836b45e
3 changed files with 7 additions and 6 deletions

View File

@@ -20,8 +20,8 @@ uint32_t ASSETCHAINS_MAGIC = 2387029918;
uint32_t ASSETCHAINS_EQUIHASH = 0;
uint32_t ASSETCHAINS_ALGO = 0;
int32_t ASSETCHAINS_LWMAPOS = 0;
int32_t ASSETCHAINS_OVERWINTER = 227520;
int32_t ASSETCHAINS_SAPLING = 227520;
int32_t ASSETCHAINS_OVERWINTER = 1;
int32_t ASSETCHAINS_SAPLING = 1;
int32_t HUSH_TESTNODE = 0;
unsigned int MAX_BLOCK_SIGOPS = 20000;