p2p: Add DumpAnchors()

This commit is contained in:
Hennadii Stepanov
2020-09-12 17:59:09 +03:00
parent 12a1c3ad1a
commit 567008d2a0
2 changed files with 17 additions and 2 deletions

View File

@@ -11,9 +11,9 @@
#include <serialize.h>
#include <string>
#include <map>
#include <vector>
class CSubNet;
class CAddress;
class CAddrMan;
class CDataStream;
@@ -73,4 +73,12 @@ public:
bool Read(banmap_t& banSet);
};
/**
* Dump the anchor IP address database (anchors.dat)
*
* Anchors are last known outgoing block-relay-only peers that are
* tried to re-connect to on startup.
*/
void DumpAnchors(const fs::path& anchors_db_path, const std::vector<CAddress>& anchors);
#endif // BITCOIN_ADDRDB_H