Monero
Loading...
Searching...
No Matches
construct_tx.h
Go to the documentation of this file.
1// Copyright (c) 2014-2022, The Monero Project
2//
3// All rights reserved.
4//
5// Redistribution and use in source and binary forms, with or without modification, are
6// permitted provided that the following conditions are met:
7//
8// 1. Redistributions of source code must retain the above copyright notice, this list of
9// conditions and the following disclaimer.
10//
11// 2. Redistributions in binary form must reproduce the above copyright notice, this list
12// of conditions and the following disclaimer in the documentation and/or other
13// materials provided with the distribution.
14//
15// 3. Neither the name of the copyright holder nor the names of its contributors may be
16// used to endorse or promote products derived from this software without specific
17// prior written permission.
18//
19// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY
20// EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
21// MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL
22// THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
23// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
24// PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
25// INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
26// STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF
27// THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
28//
29// Parts of this file are originally copyright (c) 2012-2013 The Cryptonote developers
30
31#pragma once
32
36
37#include "multi_tx_test_base.h"
38
39template<size_t a_in_count, size_t a_out_count, bool a_rct, rct::RangeProofType range_proof_type = rct::RangeProofBorromean, int bp_version = 2>
40class test_construct_tx : private multi_tx_test_base<a_in_count>
41{
42 static_assert(0 < a_in_count, "in_count must be greater than 0");
43 static_assert(0 < a_out_count, "out_count must be greater than 0");
44
45public:
46 static const size_t loop_count = (a_in_count + a_out_count < 10) ? (a_rct ? 10 : 200) : (a_in_count + a_out_count) < 100 ? (a_rct ? 5 : 25) : 5;
47 static const size_t in_count = a_in_count;
48 static const size_t out_count = a_out_count;
49 static const bool rct = a_rct;
50
52
53 bool init()
54 {
55 using namespace cryptonote;
56
57 if (!base_class::init())
58 return false;
59
60 m_alice.generate();
61
62 for (size_t i = 0; i < out_count; ++i)
63 {
64 m_destinations.push_back(tx_destination_entry(this->m_source_amount / out_count, m_alice.get_keys().m_account_address, false));
65 }
66
67 return true;
68 }
69
70 bool test()
71 {
72 crypto::secret_key tx_key;
73 std::vector<crypto::secret_key> additional_tx_keys;
74 std::unordered_map<crypto::public_key, cryptonote::subaddress_index> subaddresses;
75 subaddresses[this->m_miners[this->real_source_idx].get_keys().m_account_address.m_spend_public_key] = {0,0};
76 rct::RCTConfig rct_config{range_proof_type, bp_version};
77 return cryptonote::construct_tx_and_get_tx_key(this->m_miners[this->real_source_idx].get_keys(), subaddresses, this->m_sources, m_destinations, cryptonote::account_public_address{}, std::vector<uint8_t>(), m_tx, tx_key, additional_tx_keys, rct, rct_config);
78 }
79
80private:
82 std::vector<cryptonote::tx_destination_entry> m_destinations;
84};
Definition account.h:74
Definition cryptonote_basic.h:205
Definition multi_tx_test_base.h:42
std::vector< cryptonote::tx_source_entry > m_sources
Definition multi_tx_test_base.h:88
bool init()
Definition multi_tx_test_base.h:49
cryptonote::account_base m_miners[ring_size]
Definition multi_tx_test_base.h:84
static const size_t real_source_idx
Definition multi_tx_test_base.h:47
uint64_t m_source_amount
Definition multi_tx_test_base.h:86
Definition construct_tx.h:41
static const size_t in_count
Definition construct_tx.h:47
bool init()
Definition construct_tx.h:53
static const size_t out_count
Definition construct_tx.h:48
bool test()
Definition construct_tx.h:70
static const size_t loop_count
Definition construct_tx.h:46
cryptonote::account_base m_alice
Definition construct_tx.h:81
cryptonote::transaction m_tx
Definition construct_tx.h:83
std::vector< cryptonote::tx_destination_entry > m_destinations
Definition construct_tx.h:82
multi_tx_test_base< a_in_count > base_class
Definition construct_tx.h:51
epee::mlocked< tools::scrubbed< ec_scalar > > secret_key
Definition crypto.h:72
Holds cryptonote related classes and helpers.
Definition blockchain_db.cpp:45
bool construct_tx_and_get_tx_key(const account_keys &sender_account_keys, const std::unordered_map< crypto::public_key, subaddress_index > &subaddresses, std::vector< tx_source_entry > &sources, std::vector< tx_destination_entry > &destinations, const boost::optional< cryptonote::account_public_address > &change_addr, const std::vector< uint8_t > &extra, transaction &tx, crypto::secret_key &tx_key, std::vector< crypto::secret_key > &additional_tx_keys, bool rct, const rct::RCTConfig &rct_config, bool use_view_tags)
Definition cryptonote_tx_utils.cpp:609
Definition bulletproofs.cc:64
Definition cryptonote_basic.h:512
Definition cryptonote_tx_utils.h:75
Definition rctTypes.h:308