From 0e53cde089b12f39e30f52d39d3ef20c5ed8fc02 Mon Sep 17 00:00:00 2001 From: Derek Guenther Date: Fri, 10 Mar 2023 11:03:53 -0500 Subject: [PATCH] Bump min network version to 22 --- ironfish/src/network/version.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ironfish/src/network/version.ts b/ironfish/src/network/version.ts index c743fc4912..e3209a2443 100644 --- a/ironfish/src/network/version.ts +++ b/ironfish/src/network/version.ts @@ -2,8 +2,8 @@ * License, v. 2.0. If a copy of the MPL was not distributed with this * file, You can obtain one at https://mozilla.org/MPL/2.0/. */ -export const VERSION_PROTOCOL = 21 -export const VERSION_PROTOCOL_MIN = 19 +export const VERSION_PROTOCOL = 22 +export const VERSION_PROTOCOL_MIN = 22 export const MAX_REQUESTED_HEADERS = 1024 export const MAX_HEADER_LOOKUPS = MAX_REQUESTED_HEADERS * 2