2014-08-13 10:38:35 +00:00
|
|
|
// Copyright (c) 2012-2014, The CryptoNote developers, The Bytecoin developers
|
|
|
|
//
|
|
|
|
// This file is part of Bytecoin.
|
|
|
|
//
|
|
|
|
// Bytecoin is free software: you can redistribute it and/or modify
|
|
|
|
// it under the terms of the GNU Lesser General Public License as published by
|
|
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
|
|
// (at your option) any later version.
|
|
|
|
//
|
|
|
|
// Bytecoin is distributed in the hope that it will be useful,
|
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
// GNU Lesser General Public License for more details.
|
|
|
|
//
|
|
|
|
// You should have received a copy of the GNU Lesser General Public License
|
|
|
|
// along with Bytecoin. If not, see <http://www.gnu.org/licenses/>.
|
2014-06-25 17:21:42 +00:00
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <vector>
|
|
|
|
#include <unordered_map>
|
|
|
|
|
|
|
|
#include "cryptonote_core/account.h"
|
|
|
|
#include "cryptonote_core/cryptonote_basic.h"
|
2014-08-13 10:51:37 +00:00
|
|
|
#include "cryptonote_core/Currency.h"
|
2014-06-25 17:21:42 +00:00
|
|
|
#include "crypto/hash.h"
|
|
|
|
|
2014-08-13 10:51:37 +00:00
|
|
|
#include "../TestGenerator/TestGenerator.h"
|
|
|
|
|
2014-06-25 17:21:42 +00:00
|
|
|
class TestBlockchainGenerator
|
|
|
|
{
|
|
|
|
public:
|
2014-08-13 10:51:37 +00:00
|
|
|
TestBlockchainGenerator(const cryptonote::Currency& currency);
|
2014-06-25 17:21:42 +00:00
|
|
|
|
2014-08-13 10:51:37 +00:00
|
|
|
std::vector<cryptonote::Block>& getBlockchain();
|
2014-06-25 17:21:42 +00:00
|
|
|
void generateEmptyBlocks(size_t count);
|
2014-08-13 10:51:37 +00:00
|
|
|
bool getBlockRewardForAddress(const cryptonote::AccountPublicAddress& address);
|
2015-04-06 16:13:07 +00:00
|
|
|
bool getSingleOutputTransaction(const cryptonote::AccountPublicAddress& address, uint64_t amount);
|
2014-08-13 10:51:37 +00:00
|
|
|
void addTxToBlockchain(const cryptonote::Transaction& transaction);
|
|
|
|
bool getTransactionByHash(const crypto::hash& hash, cryptonote::Transaction& tx);
|
2015-04-06 16:13:07 +00:00
|
|
|
const cryptonote::account_base& getMinerAccount() const { return miner_acc; }
|
|
|
|
|
|
|
|
void putTxToPool(const cryptonote::Transaction& tx);
|
|
|
|
void getPoolSymmetricDifference(std::vector<crypto::hash>&& known_pool_tx_ids, crypto::hash known_block_id, bool& is_bc_actual,
|
|
|
|
std::vector<cryptonote::Transaction>& new_txs, std::vector<crypto::hash>& deleted_tx_ids);
|
|
|
|
void putTxPoolToBlockchain();
|
|
|
|
void clearTxPool();
|
2014-06-25 17:21:42 +00:00
|
|
|
|
|
|
|
private:
|
2015-04-06 16:13:07 +00:00
|
|
|
|
|
|
|
void addGenesisBlock();
|
|
|
|
void addMiningBlock();
|
|
|
|
|
2014-08-13 10:51:37 +00:00
|
|
|
const cryptonote::Currency& m_currency;
|
2014-06-25 17:21:42 +00:00
|
|
|
test_generator generator;
|
|
|
|
cryptonote::account_base miner_acc;
|
2014-08-13 10:51:37 +00:00
|
|
|
std::vector<cryptonote::Block> m_blockchain;
|
|
|
|
std::unordered_map<crypto::hash, cryptonote::Transaction> m_txs;
|
2015-04-06 16:13:07 +00:00
|
|
|
std::unordered_map<crypto::hash, cryptonote::Transaction> m_txPool;
|
|
|
|
|
|
|
|
void addToBlockchain(cryptonote::Transaction const& tx);
|
2014-06-25 17:21:42 +00:00
|
|
|
};
|