From c44faab027aa7a518d68be5328cd00e1ee8010b0 Mon Sep 17 00:00:00 2001 From: kehiy Date: Mon, 12 Aug 2024 11:48:05 +0330 Subject: [PATCH] feat(genesis): sperating chain params from genesis params --- tests/main_test.go | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/tests/main_test.go b/tests/main_test.go index 3ac9d1638..aa7861525 100644 --- a/tests/main_test.go +++ b/tests/main_test.go @@ -38,11 +38,11 @@ var ( ) const ( - tNodeIdx1 = iota - tNodeIdx2 - tNodeIdx3 - tNodeIdx4 - tTotalNodes // each node has 3 validators + tNodeIdx1 = 0 + tNodeIdx2 = 1 + tNodeIdx3 = 2 + tNodeIdx4 = 3 + tTotalNodes = 4 // each node has 3 validators tCommitteeSize = 7 )