danicoin/src/Transfers/CommonTypes.h
2016-01-18 15:33:29 +00:00

31 lines
663 B
C++

// Copyright (c) 2011-2016 The Cryptonote developers
// Distributed under the MIT/X11 software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
#pragma once
#include <array>
#include <memory>
#include <cstdint>
#include <boost/optional.hpp>
#include "INode.h"
#include "ITransaction.h"
namespace CryptoNote {
struct BlockchainInterval {
uint32_t startHeight;
std::vector<Crypto::Hash> blocks;
};
struct CompleteBlock {
Crypto::Hash blockHash;
boost::optional<CryptoNote::Block> block;
// first transaction is always coinbase
std::list<std::shared_ptr<ITransactionReader>> transactions;
};
}