danicoin/src/Transfers/CommonTypes.h

31 lines
663 B
C
Raw Normal View History

// 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.
2014-06-25 17:21:42 +00:00
#pragma once
#include <array>
#include <memory>
#include <cstdint>
2014-06-25 17:21:42 +00:00
#include <boost/optional.hpp>
#include "INode.h"
#include "ITransaction.h"
2014-06-25 17:21:42 +00:00
namespace CryptoNote {
struct BlockchainInterval {
2015-07-30 15:22:07 +00:00
uint32_t startHeight;
std::vector<Crypto::Hash> blocks;
};
struct CompleteBlock {
2015-07-30 15:22:07 +00:00
Crypto::Hash blockHash;
2015-05-27 12:08:46 +00:00
boost::optional<CryptoNote::Block> block;
// first transaction is always coinbase
std::list<std::shared_ptr<ITransactionReader>> transactions;
2014-06-25 17:21:42 +00:00
};
}