Transaction View: LastMonth calculation fixed
[novacoin.git] / src / txdb.h
1 // Copyright (c) 2009-2010 Satoshi Nakamoto
2 // Copyright (c) 2009-2012 The Bitcoin developers
3 // Distributed under the MIT/X11 software license, see the accompanying
4 // file license.txt or http://www.opensource.org/licenses/mit-license.php.
5
6 #ifndef BITCOIN_TXDB_H
7 #define BITCOIN_TXDB_H
8
9 // Allow switching between LevelDB and BerkelyDB here in case we need to temporarily
10 // go back to BDB for any reason. Once we're confident enough with LevelDB to stick
11 // with it, this can be deleted.
12
13 #ifdef USE_LEVELDB
14 #include "txdb-leveldb.h"
15 #else
16 #include "db.h"
17 #include "txdb-bdb.h"
18 #endif
19
20 #endif  // BITCOIN_TXDB_H