From 1fa0b3fba41831885ff965871d49d772cd3a01c5 Mon Sep 17 00:00:00 2001 From: Ran Mishael Date: Mon, 25 Nov 2024 15:48:20 +0100 Subject: [PATCH 1/2] chore: increase protocol veresion --- x/protocol/types/params.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/x/protocol/types/params.go b/x/protocol/types/params.go index ba2afd4a2a..27ce27395b 100644 --- a/x/protocol/types/params.go +++ b/x/protocol/types/params.go @@ -12,7 +12,7 @@ import ( var _ paramtypes.ParamSet = (*Params)(nil) const ( - TARGET_VERSION = "4.1.1" + TARGET_VERSION = "4.1.2" MIN_VERSION = "3.1.0" ) From 7dcbd75a045e7bb811eb007f4bc16443d6b8bb78 Mon Sep 17 00:00:00 2001 From: Ran Mishael Date: Tue, 26 Nov 2024 11:23:31 +0100 Subject: [PATCH 2/2] add error to allow list that can happen when shutting down the node --- testutil/e2e/allowedErrorList.go | 1 + 1 file changed, 1 insertion(+) diff --git a/testutil/e2e/allowedErrorList.go b/testutil/e2e/allowedErrorList.go index 192e3eac1b..11dc03bfbf 100644 --- a/testutil/e2e/allowedErrorList.go +++ b/testutil/e2e/allowedErrorList.go @@ -17,6 +17,7 @@ var allowedErrorsDuringEmergencyMode = map[string]string{ "Connection refused": "Connection to tendermint port sometimes can happen as we shut down the node and we try to fetch info during emergency mode", "connection reset by peer": "Connection to tendermint port sometimes can happen as we shut down the node and we try to fetch info during emergency mode", "Failed Querying EpochDetails": "Connection to tendermint port sometimes can happen as we shut down the node and we try to fetch info during emergency mode", + "http://[IP_ADDRESS]:26657": "This error is allowed because it can happen when EOF error happens when we shut down the node in emergency mode", } var allowedErrorsPaymentE2E = map[string]string{