diff options
author | MarcoFalke <falke.marco@gmail.com> | 2020-08-17 12:47:05 +0200 |
---|---|---|
committer | MarcoFalke <falke.marco@gmail.com> | 2020-08-17 12:47:11 +0200 |
commit | 1bc8e8eae2dc4b47ef67afc6880ea48b8e84a086 (patch) | |
tree | 2d00d2fa24bed9eb65082a4569163e07d5749e08 /src/Makefile.am | |
parent | c831e105c567420aa4d3f60c6675a229daaf5fe6 (diff) | |
parent | 7668db3b08531a590089d66cc5c91f1fb3afbfcc (diff) |
Merge #19734: Move CDiskTxPos to its own file
7668db3b08531a590089d66cc5c91f1fb3afbfcc Move only: Move CDiskTxPos to its own file (Marcin Jachymiak)
Pull request description:
Moves `CDiskTxPos` it its own file so it can be used without the `txindex.h` include elsewhere. Originally part of #14053.
ACKs for top commit:
jnewbery:
utACK 7668db3b08531a590089d66cc5c91f1fb3afbfcc
promag:
ACK 7668db3b08531a590089d66cc5c91f1fb3afbfcc.
Tree-SHA512: b108e980ad04e43d1323410c3683a82bed70aee7795f5d8a2afbaf32a07ba598571f00b047bdde15048124b17178bcbd10654c48461beac988e9643cb2df664c
Diffstat (limited to 'src/Makefile.am')
-rw-r--r-- | src/Makefile.am | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/Makefile.am b/src/Makefile.am index f52e9e5811..175501d4a6 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -140,6 +140,7 @@ BITCOIN_CORE_H = \ httpserver.h \ index/base.h \ index/blockfilterindex.h \ + index/disktxpos.h \ index/txindex.h \ indirectmap.h \ init.h \ |