diff options
| author | Pieter Wuille <[email protected]> | 2012-09-03 21:14:03 +0200 |
|---|---|---|
| committer | Pieter Wuille <[email protected]> | 2012-10-20 23:08:57 +0200 |
| commit | 2d8a48292b0da96cda8d7b45a24a22adfb4667b2 (patch) | |
| tree | 351935f27dcd037d68d514c3a79ff5d2d24da367 /src/init.cpp | |
| parent | Flush and sync block data (diff) | |
| download | discoin-2d8a48292b0da96cda8d7b45a24a22adfb4667b2.tar.xz discoin-2d8a48292b0da96cda8d7b45a24a22adfb4667b2.zip | |
LevelDB block and coin databases
Split off CBlockTreeDB and CCoinsViewDB into txdb-*.{cpp,h} files,
implemented by either LevelDB or BDB.
Based on code from earlier commits by Mike Hearn in his leveldb
branch.
Diffstat (limited to 'src/init.cpp')
| -rw-r--r-- | src/init.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/init.cpp b/src/init.cpp index 07e5d13d6..30f0d0049 100644 --- a/src/init.cpp +++ b/src/init.cpp @@ -2,7 +2,7 @@ // Copyright (c) 2009-2012 The Bitcoin developers // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. -#include "db.h" +#include "txdb.h" #include "walletdb.h" #include "bitcoinrpc.h" #include "net.h" |