Monero
multi_tx_test_base.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 
33 #include <vector>
34 
38 #include "crypto/crypto.h"
39 
40 template<size_t a_ring_size>
42 {
43  static_assert(0 < a_ring_size, "ring_size must be greater than 0");
44 
45 public:
46  static const size_t ring_size = a_ring_size;
47  static const size_t real_source_idx = ring_size / 2;
48 
49  bool init()
50  {
51  using namespace cryptonote;
52 
53  std::vector<tx_source_entry::output_entry> output_entries;
54  for (size_t i = 0; i < ring_size; ++i)
55  {
56  m_miners[i].generate();
57 
58  if (!construct_miner_tx(0, 0, 0, 2, 0, m_miners[i].get_keys().m_account_address, m_miner_txs[i]))
59  return false;
60 
61  txout_to_key tx_out = boost::get<txout_to_key>(m_miner_txs[i].vout[0].target);
62  output_entries.push_back(std::make_pair(i, rct::ctkey({rct::pk2rct(tx_out.key), rct::zeroCommit(m_miner_txs[i].vout[0].amount)})));
63  m_public_keys[i] = tx_out.key;
65  }
66 
67  m_source_amount = m_miner_txs[0].vout[0].amount;
68 
69  tx_source_entry source_entry;
70  source_entry.amount = m_source_amount;
72  source_entry.real_output_in_tx_index = 0;
73  source_entry.outputs.swap(output_entries);
74  source_entry.real_output = real_source_idx;
75  source_entry.mask = rct::identity();
76  source_entry.rct = false;
77 
78  m_sources.push_back(source_entry);
79 
80  return true;
81  }
82 
83 protected:
87 
88  std::vector<cryptonote::tx_source_entry> m_sources;
91 };
crypto::public_key real_out_tx_key
Definition: cryptonote_tx_utils.h:48
static const rct::key & pk2rct(const crypto::public_key &pk)
Definition: rctTypes.h:739
int i
Definition: pymoduletest.py:23
cryptonote::account_base m_miners[ring_size]
Definition: multi_tx_test_base.h:84
const crypto::public_key * m_public_key_ptrs[ring_size]
Definition: multi_tx_test_base.h:90
Definition: rctTypes.h:97
static const size_t real_source_idx
Definition: multi_tx_test_base.h:47
Definition: cryptonote_basic.h:78
bool rct
Definition: cryptonote_tx_utils.h:52
uint64_t real_output_in_tx_index
Definition: cryptonote_tx_utils.h:50
crypto::secret_key generate(const crypto::secret_key &recovery_key=crypto::secret_key(), bool recover=false, bool two_random=false)
Definition: account.cpp:166
uint64_t amount
Definition: cryptonote_tx_utils.h:51
key zeroCommit(xmr_amount amount)
Definition: rctOps.cpp:322
std::vector< tx_out > vout
Definition: cryptonote_basic.h:179
Holds cryptonote related classes and helpers.
Definition: blockchain_db.cpp:44
Definition: multi_tx_test_base.h:41
uint64_t m_source_amount
Definition: multi_tx_test_base.h:86
Definition: cryptonote_tx_utils.h:42
Definition: account.h:73
unsigned __int64 uint64_t
Definition: stdint.h:136
crypto::public_key get_tx_pub_key_from_extra(const std::vector< uint8_t > &tx_extra, size_t pk_index)
Definition: cryptonote_format_utils.cpp:666
POD_CLASS public_key
Definition: crypto.h:61
bool init()
Definition: multi_tx_test_base.h:49
cryptonote::transaction m_miner_txs[ring_size]
Definition: multi_tx_test_base.h:85
static const size_t ring_size
Definition: multi_tx_test_base.h:46
key identity()
Definition: rctOps.h:73
uint64_t real_output
Definition: cryptonote_tx_utils.h:47
std::vector< output_entry > outputs
Definition: cryptonote_tx_utils.h:46
Definition: cryptonote_basic.h:157
std::vector< cryptonote::tx_source_entry > m_sources
Definition: multi_tx_test_base.h:88
bool construct_miner_tx(size_t height, size_t median_weight, uint64_t already_generated_coins, size_t current_block_weight, uint64_t fee, const account_public_address &miner_address, transaction &tx, const blobdata &extra_nonce, size_t max_outs, uint8_t hard_fork_version)
Definition: cryptonote_tx_utils.cpp:78
Definition: cryptonote_basic.h:204
rct::key mask
Definition: cryptonote_tx_utils.h:53
crypto::public_key m_public_keys[ring_size]
Definition: multi_tx_test_base.h:89