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