diff options
author | Thomas Winget <tewinget@gmail.com> | 2015-03-06 15:20:45 -0500 |
---|---|---|
committer | Thomas Winget <tewinget@gmail.com> | 2015-03-06 15:20:45 -0500 |
commit | 5eab480cb116b7c58fe020951995815baa7ccd8f (patch) | |
tree | 639114a6b9ba42054577e7558760d10e84d82360 /src/blockchain_db/lmdb/db_lmdb.h | |
parent | Changed log level of debug message -- too spammy (diff) | |
download | monero-5eab480cb116b7c58fe020951995815baa7ccd8f.tar.xz |
Moved BlockchainDB into its own src/ subfolder
Ostensibly janitorial work, but should be more relevant later down the
line. Things that depend on core cryptonote things (i.e.
cryptonote_core) don't necessarily depend on BlockchainDB and thus
have no need to have BlockchainDB baked in with them.
Diffstat (limited to '')
-rw-r--r-- | src/blockchain_db/lmdb/db_lmdb.h (renamed from src/cryptonote_core/BlockchainDB_impl/db_lmdb.h) | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cryptonote_core/BlockchainDB_impl/db_lmdb.h b/src/blockchain_db/lmdb/db_lmdb.h index 0b4b5ec1a..f6582fce4 100644 --- a/src/cryptonote_core/BlockchainDB_impl/db_lmdb.h +++ b/src/blockchain_db/lmdb/db_lmdb.h @@ -25,7 +25,7 @@ // STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF // THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -#include "cryptonote_core/blockchain_db.h" +#include "blockchain_db/blockchain_db.h" #include "cryptonote_protocol/blobdatatype.h" // for type blobdata #include <lmdb.h> |