diff --git a/src/Makefile.test.include b/src/Makefile.test.include index 9d0a5a52ab..0e0db4a147 100644 --- a/src/Makefile.test.include +++ b/src/Makefile.test.include @@ -120,6 +120,7 @@ BITCOIN_TESTS =\ test/bech32_tests.cpp \ test/bip32_tests.cpp \ test/bip39_tests.cpp \ + test/block_reward_reallocation_tests.cpp \ test/blockchain_tests.cpp \ test/blockencodings_tests.cpp \ test/blockfilter_tests.cpp \ @@ -139,6 +140,7 @@ BITCOIN_TESTS =\ test/denialofservice_tests.cpp \ test/dip0020opcodes_tests.cpp \ test/descriptor_tests.cpp \ + test/dynamic_activation_thresholds_tests.cpp \ test/evo_deterministicmns_tests.cpp \ test/evo_simplifiedmns_tests.cpp \ test/flatfile_tests.cpp \ diff --git a/src/test/block_reward_reallocation_tests.cpp b/src/test/block_reward_reallocation_tests.cpp new file mode 100644 index 0000000000..0147722aaa --- /dev/null +++ b/src/test/block_reward_reallocation_tests.cpp @@ -0,0 +1,329 @@ +// Copyright (c) 2021 The Dash Core developers +// Distributed under the MIT software license, see the accompanying +// file COPYING or http://www.opensource.org/licenses/mit-license.php. + +#include + +#include +#include +#include +#include +#include +#include +#include