diff --git a/src/Makefile.am b/src/Makefile.am index 9145ad2380c52..a354b9e6f5149 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -297,6 +297,7 @@ BITCOIN_CORE_H = \ support/events.h \ support/lockedpool.h \ sync.h \ + timestampindex.h \ threadsafety.h \ threadinterrupt.h \ timedata.h \ @@ -385,6 +386,7 @@ libbitcoin_server_a_CPPFLAGS = $(AM_CPPFLAGS) $(BITCOIN_INCLUDES) $(MINIUPNPC_CP libbitcoin_server_a_CXXFLAGS = $(AM_CXXFLAGS) $(PIE_FLAGS) libbitcoin_server_a_SOURCES = \ addrdb.cpp \ + addressindex.cpp \ addrman.cpp \ banman.cpp \ batchedlogger.cpp \ diff --git a/src/addressindex.cpp b/src/addressindex.cpp new file mode 100644 index 0000000000000..e9eee7850f8cd --- /dev/null +++ b/src/addressindex.cpp @@ -0,0 +1,43 @@ +// Copyright (c) 2016 BitPay, Inc. +// Copyright (c) 2023 The Dash Core developers +// Distributed under the MIT software license, see the accompanying +// file COPYING or http://www.opensource.org/licenses/mit-license.php. + +#include + +#include +#include +#include