1
0
Fork 0
forked from lthn/blockchain

Implemented test for the issue related to TX_SERVICE_ATTACHMENT_ENCRYPT_BODY_ISOLATE_AUDITABLE with outgoing transactions

This commit is contained in:
cryptozoidberg 2023-07-14 22:43:56 +02:00
parent e3f2170f00
commit f36f570310
No known key found for this signature in database
GPG key ID: 22DEB97A54C6FDEC
3 changed files with 6 additions and 1 deletions

View file

@ -995,6 +995,8 @@ namespace tools
bool encrypt_buffer(const std::string& buff, std::string& res_buff);
bool decrypt_buffer(const std::string& buff, std::string& res_buff);
construct_tx_param get_default_construct_tx_param();
private:
// -------- t_transport_state_notifier ------------------------------------------------
@ -1073,7 +1075,7 @@ private:
template<typename input_t>
bool process_input_t(const input_t& in_t, wallet2::process_transaction_context& ptc, const currency::transaction& tx);
construct_tx_param get_default_construct_tx_param();
uint64_t get_tx_expiration_median() const;

View file

@ -1258,6 +1258,8 @@ int main(int argc, char* argv[])
GENERATE_AND_PLAY(zarcanum_block_with_txs);
GENERATE_AND_PLAY(asset_depoyment_and_few_zc_utxos);
GENERATE_AND_PLAY(attachment_isolation_test);
// GENERATE_AND_PLAY(gen_block_reward);
// END OF TESTS */

View file

@ -43,3 +43,4 @@
#include "zarcanum_test.h"
#include "multiassets_test.h"
#include "ionic_swap_tests.h"
#include "attachment_isolation_encryption_test.h"