fixed unit tests; fixed core tests; fixed performance tests; added fix to prevent change in block reward split (thanks Akil); added prelim code for spend authority proof - not complete / working

This commit is contained in:
Some Random Crypto Guy
2024-12-15 11:09:46 +00:00
parent c6d843b6f5
commit e909e3eef1
46 changed files with 631 additions and 268 deletions
+3
View File
@@ -47,6 +47,9 @@ const hardfork_t testnet_hard_forks[] = {
// version 2 starts from block 250
{ 2, 250, 0, 1445355000 },
// version 3 starts from block 500
{ 3, 500, 0, 1729518000 },
};
const size_t num_testnet_hard_forks = sizeof(testnet_hard_forks) / sizeof(testnet_hard_forks[0]);
const uint64_t testnet_hard_fork_version_1_till = ((uint64_t)-1);