mirror of
https://github.com/ElementsProject/elements.git
synced 2026-08-14 12:43:40 +02:00
Merge cd66d8b1d8 into merged_master (Bitcoin PR #20429)
This commit is contained in:
commit
89db5e68a5
15 changed files with 45 additions and 55 deletions
|
|
@ -5,7 +5,6 @@
|
|||
|
||||
#include <protocol.h>
|
||||
|
||||
#include <util/strencodings.h>
|
||||
#include <util/system.h>
|
||||
|
||||
static std::atomic<bool> g_initial_block_download_completed(false);
|
||||
|
|
@ -86,7 +85,7 @@ const static std::string allNetMessageTypes[] = {
|
|||
NetMsgType::CFCHECKPT,
|
||||
NetMsgType::WTXIDRELAY,
|
||||
};
|
||||
const static std::vector<std::string> allNetMessageTypesVec(allNetMessageTypes, allNetMessageTypes+ARRAYLEN(allNetMessageTypes));
|
||||
const static std::vector<std::string> allNetMessageTypesVec(std::begin(allNetMessageTypes), std::end(allNetMessageTypes));
|
||||
|
||||
CMessageHeader::CMessageHeader()
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue