aboutsummaryrefslogtreecommitdiff
path: root/tests/core_tests/chaingen_main.cpp
diff options
context:
space:
mode:
authorluigi1111 <luigi1111w@gmail.com>2019-12-12 13:32:35 -0600
committerluigi1111 <luigi1111w@gmail.com>2019-12-12 13:32:35 -0600
commit3531cc5fd2889ec5cdd3aecd0e3ba6672fec2e02 (patch)
treea0abff5ebc21fce520afcdb60a6955b9ffb3c183 /tests/core_tests/chaingen_main.cpp
parent411f1b0ee30f1d424621eb856841dc82d2f161c2 (diff)
parent5d7ae2d2791c0244a221872a7ac62627abb81896 (diff)
downloadmonzero-core-3531cc5fd2889ec5cdd3aecd0e3ba6672fec2e02.tar.gz
monzero-core-3531cc5fd2889ec5cdd3aecd0e3ba6672fec2e02.tar.xz
monzero-core-3531cc5fd2889ec5cdd3aecd0e3ba6672fec2e02.zip
Merge pull request #5965
5d7ae2d Adding support for hidden (anonymity) txpool (vtnerd)
Diffstat (limited to 'tests/core_tests/chaingen_main.cpp')
-rw-r--r--tests/core_tests/chaingen_main.cpp7
1 files changed, 7 insertions, 0 deletions
diff --git a/tests/core_tests/chaingen_main.cpp b/tests/core_tests/chaingen_main.cpp
index 8406f416f..23f3170b8 100644
--- a/tests/core_tests/chaingen_main.cpp
+++ b/tests/core_tests/chaingen_main.cpp
@@ -32,6 +32,7 @@
#include "chaingen_tests_list.h"
#include "common/util.h"
#include "common/command_line.h"
+#include "tx_pool.h"
#include "transaction_tests.h"
namespace po = boost::program_options;
@@ -155,6 +156,12 @@ int main(int argc, char* argv[])
GENERATE_AND_PLAY(gen_tx_output_is_not_txout_to_key);
GENERATE_AND_PLAY(gen_tx_signatures_are_invalid);
+ // Mempool
+ GENERATE_AND_PLAY(txpool_spend_key_public);
+ GENERATE_AND_PLAY(txpool_spend_key_all);
+ GENERATE_AND_PLAY(txpool_double_spend_norelay);
+ GENERATE_AND_PLAY(txpool_double_spend_local);
+
// Double spend
GENERATE_AND_PLAY(gen_double_spend_in_tx<false>);
GENERATE_AND_PLAY(gen_double_spend_in_tx<true>);