aboutsummaryrefslogtreecommitdiff
path: root/src/txdb.h
diff options
context:
space:
mode:
authorMarcoFalke <falke.marco@gmail.com>2021-08-04 21:04:44 +0200
committerMarcoFalke <falke.marco@gmail.com>2021-08-20 16:55:27 +0200
commitfab89006d656261770503e54fdd01ac9167bdd49 (patch)
tree3ddc4c998386e63a5d92967d42c9c2319220b255 /src/txdb.h
parent192a959b65660ffacedb5a5eb2a0d26736c636d7 (diff)
downloadbitcoin-fab89006d656261770503e54fdd01ac9167bdd49.tar.xz
Add missing includes and forward declarations, remove unused ones
Diffstat (limited to 'src/txdb.h')
-rw-r--r--src/txdb.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/txdb.h b/src/txdb.h
index 845d80788f..977c83356f 100644
--- a/src/txdb.h
+++ b/src/txdb.h
@@ -16,9 +16,12 @@
#include <utility>
#include <vector>
+class CBlockFileInfo;
class CBlockIndex;
-class CCoinsViewDBCursor;
class uint256;
+namespace Consensus {
+struct Params;
+};
//! -dbcache default (MiB)
static const int64_t nDefaultDbCache = 450;