diff options
author | Howard Chu <hyc@symas.com> | 2019-04-23 20:32:27 +0100 |
---|---|---|
committer | Howard Chu <hyc@symas.com> | 2019-09-25 21:29:42 +0100 |
commit | 81c2ad6d5b17cf280a4a55fd6159e8dde423f5a8 (patch) | |
tree | 7bb731b721183e73afbb60e01cf3759723e4948b /src/hardforks | |
parent | Merge pull request #5909 (diff) | |
download | monero-81c2ad6d5b17cf280a4a55fd6159e8dde423f5a8.tar.xz |
RandomX integration
Support RandomX PoW algorithm
Diffstat (limited to 'src/hardforks')
-rw-r--r-- | src/hardforks/hardforks.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/hardforks/hardforks.cpp b/src/hardforks/hardforks.cpp index 3cb148c60..41aa3e9cb 100644 --- a/src/hardforks/hardforks.cpp +++ b/src/hardforks/hardforks.cpp @@ -86,6 +86,7 @@ const hardfork_t testnet_hard_forks[] = { { 9, 1057778, 0, 1533297600 }, { 10, 1154318, 0, 1550153694 }, { 11, 1155038, 0, 1550225678 }, + { 12, 1308737, 0, 1569582000 }, }; 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 = 624633; |