fix dependency: put HardFork back to cryptonote_basic, made some BlockchainDB functions virtual again to avoid missing symbols error

This commit is contained in:
kenshi84 2017-03-10 10:20:38 +09:00
parent b67877af6f
commit 7d07c64fe5
No known key found for this signature in database
GPG key ID: 2EDF47F7E1A26933
8 changed files with 10 additions and 10 deletions

View file

@ -37,7 +37,7 @@
#include "cryptonote_protocol/blobdatatype.h"
#include "cryptonote_basic/cryptonote_basic.h"
#include "cryptonote_basic/difficulty.h"
#include "cryptonote_core/hardfork.h"
#include "cryptonote_basic/hardfork.h"
/** \file
* Cryptonote Blockchain Database Interface
@ -768,7 +768,7 @@ public:
*
* @return the block requested
*/
block get_block(const crypto::hash& h) const;
virtual block get_block(const crypto::hash& h) const;
/**
* @brief gets the height of the block with a given hash
@ -821,7 +821,7 @@ public:
*
* @return the block
*/
block get_block_from_height(const uint64_t& height) const;
virtual block get_block_from_height(const uint64_t& height) const;
/**
* @brief fetch a block's timestamp
@ -1041,7 +1041,7 @@ public:
*
* @return the transaction with the given hash
*/
transaction get_tx(const crypto::hash& h) const;
virtual transaction get_tx(const crypto::hash& h) const;
/**
* @brief fetches the transaction with the given hash
@ -1052,7 +1052,7 @@ public:
*
* @return true iff the transaction was found
*/
bool get_tx(const crypto::hash& h, transaction &tx) const;
virtual bool get_tx(const crypto::hash& h, transaction &tx) const;
/**
* @brief fetches the transaction blob with the given hash

View file

@ -32,6 +32,7 @@ set(cryptonote_basic_sources
cryptonote_basic_impl.cpp
cryptonote_format_utils.cpp
difficulty.cpp
hardfork.cpp
miner.cpp)
set(cryptonote_basic_headers)
@ -47,6 +48,7 @@ set(cryptonote_basic_private_headers
cryptonote_format_utils.h
cryptonote_stat_info.h
difficulty.h
hardfork.h
miner.h
tx_extra.h
verification_context.h)

View file

@ -30,7 +30,6 @@ set(cryptonote_core_sources
blockchain.cpp
cryptonote_core.cpp
tx_pool.cpp
hardfork.cpp
cryptonote_tx_utils.cpp)
set(cryptonote_core_headers)
@ -38,7 +37,6 @@ set(cryptonote_core_headers)
set(cryptonote_core_private_headers
blockchain_storage_boost_serialization.h
blockchain.h
hardfork.h
cryptonote_core.h
tx_pool.h
cryptonote_tx_utils.h)

View file

@ -51,7 +51,7 @@
#include "cryptonote_basic/verification_context.h"
#include "crypto/hash.h"
#include "cryptonote_basic/checkpoints.h"
#include "cryptonote_core/hardfork.h"
#include "cryptonote_basic/hardfork.h"
#include "blockchain_db/blockchain_db.h"
namespace cryptonote

View file

@ -34,7 +34,7 @@
#include "daemon/rpc_command_executor.h"
#include "rpc/core_rpc_server_commands_defs.h"
#include "cryptonote_core/cryptonote_core.h"
#include "cryptonote_core/hardfork.h"
#include "cryptonote_basic/hardfork.h"
#include <boost/format.hpp>
#include <ctime>
#include <string>

View file

@ -33,7 +33,7 @@
#include "blockchain_db/lmdb/db_lmdb.h"
#include "cryptonote_basic/cryptonote_format_utils.h"
#include "cryptonote_core/hardfork.h"
#include "cryptonote_basic/hardfork.h"
using namespace cryptonote;