mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-01-10 20:03:34 -03:00
protocol.h/cpp: Removes NetMsgType::ALERT
This commit is contained in:
parent
ad7210408c
commit
6601ce508e
2 changed files with 0 additions and 9 deletions
|
@ -28,7 +28,6 @@ const char *GETADDR="getaddr";
|
||||||
const char *MEMPOOL="mempool";
|
const char *MEMPOOL="mempool";
|
||||||
const char *PING="ping";
|
const char *PING="ping";
|
||||||
const char *PONG="pong";
|
const char *PONG="pong";
|
||||||
const char *ALERT="alert";
|
|
||||||
const char *NOTFOUND="notfound";
|
const char *NOTFOUND="notfound";
|
||||||
const char *FILTERLOAD="filterload";
|
const char *FILTERLOAD="filterload";
|
||||||
const char *FILTERADD="filteradd";
|
const char *FILTERADD="filteradd";
|
||||||
|
@ -64,7 +63,6 @@ const static std::string allNetMessageTypes[] = {
|
||||||
NetMsgType::MEMPOOL,
|
NetMsgType::MEMPOOL,
|
||||||
NetMsgType::PING,
|
NetMsgType::PING,
|
||||||
NetMsgType::PONG,
|
NetMsgType::PONG,
|
||||||
NetMsgType::ALERT,
|
|
||||||
NetMsgType::NOTFOUND,
|
NetMsgType::NOTFOUND,
|
||||||
NetMsgType::FILTERLOAD,
|
NetMsgType::FILTERLOAD,
|
||||||
NetMsgType::FILTERADD,
|
NetMsgType::FILTERADD,
|
||||||
|
|
|
@ -163,13 +163,6 @@ extern const char *PING;
|
||||||
* @see https://bitcoin.org/en/developer-reference#pong
|
* @see https://bitcoin.org/en/developer-reference#pong
|
||||||
*/
|
*/
|
||||||
extern const char *PONG;
|
extern const char *PONG;
|
||||||
/**
|
|
||||||
* The alert message warns nodes of problems that may affect them or the rest
|
|
||||||
* of the network.
|
|
||||||
* @since protocol version 311.
|
|
||||||
* @see https://bitcoin.org/en/developer-reference#alert
|
|
||||||
*/
|
|
||||||
extern const char *ALERT;
|
|
||||||
/**
|
/**
|
||||||
* The notfound message is a reply to a getdata message which requested an
|
* The notfound message is a reply to a getdata message which requested an
|
||||||
* object the receiving node does not have available for relay.
|
* object the receiving node does not have available for relay.
|
||||||
|
|
Loading…
Reference in a new issue