Skip to content

Commit 3570192

Browse files
authored
Merge pull request #83 from LIMXTEC/master
head merged
2 parents b785e48 + 740600b commit 3570192

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

src/net.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,8 +55,8 @@ static const int FEELER_INTERVAL = 120;
5555
static const unsigned int MAX_INV_SZ = 50000;
5656
/** The maximum number of new addresses to accumulate before announcing. */
5757
static const unsigned int MAX_ADDR_TO_SEND = 1000;
58-
/** Maximum length of incoming protocol messages (no message over 800 MB is currently acceptable). */
59-
static const unsigned int MAX_PROTOCOL_MESSAGE_LENGTH = 800 * 1000 * 1000;
58+
/** Maximum length of incoming protocol messages (no message over 80 MB is currently acceptable). */
59+
static const unsigned int MAX_PROTOCOL_MESSAGE_LENGTH = 80 * 1000 * 1000;
6060
/** Maximum length of strSubVer in `version` message */
6161
static const unsigned int MAX_SUBVERSION_LENGTH = 256;
6262
/** Maximum number of automatic outgoing nodes */

src/version.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
* network protocol versioning
1010
*/
1111

12-
static const int PROTOCOL_VERSION = 70082;
12+
static const int PROTOCOL_VERSION = 70083;
1313

1414
//! initial proto version, to be increased after version/verack negotiation
1515
static const int INIT_PROTO_VERSION = 209;

0 commit comments

Comments
 (0)