danicoin/tests/CoreTests/ChainSwitch1.h

31 lines
1.1 KiB
C
Raw Normal View History

// Copyright (c) 2011-2016 The Cryptonote developers
2014-03-03 22:07:58 +00:00
// Distributed under the MIT/X11 software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
#pragma once
2015-07-30 15:22:07 +00:00
#include "Chaingen.h"
2014-03-03 22:07:58 +00:00
/************************************************************************/
/* */
/************************************************************************/
class gen_chain_switch_1 : public test_chain_unit_base
{
public:
gen_chain_switch_1();
bool generate(std::vector<test_event_entry>& events) const;
2015-05-27 12:08:46 +00:00
bool check_split_not_switched(CryptoNote::core& c, size_t ev_index, const std::vector<test_event_entry>& events);
bool check_split_switched(CryptoNote::core& c, size_t ev_index, const std::vector<test_event_entry>& events);
2014-03-03 22:07:58 +00:00
private:
2015-05-27 12:08:46 +00:00
std::list<CryptoNote::Block> m_chain_1;
2014-03-03 22:07:58 +00:00
2015-07-30 15:22:07 +00:00
CryptoNote::AccountBase m_recipient_account_1;
CryptoNote::AccountBase m_recipient_account_2;
CryptoNote::AccountBase m_recipient_account_3;
CryptoNote::AccountBase m_recipient_account_4;
2014-03-03 22:07:58 +00:00
2015-07-15 12:23:00 +00:00
std::vector<CryptoNote::Transaction> m_tx_pool;
2014-03-03 22:07:58 +00:00
};