From 0edf50b540f08f78881e68ffdb4f9795fafc2f2a Mon Sep 17 00:00:00 2001 From: venkatesh mankena Date: Fri, 20 Sep 2019 17:54:01 +0530 Subject: [PATCH] initial span size condition change --- consensus/bor/bor.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/consensus/bor/bor.go b/consensus/bor/bor.go index 21bea13ecf..800de192a7 100644 --- a/consensus/bor/bor.go +++ b/consensus/bor/bor.go @@ -821,7 +821,7 @@ func GetValidators(number uint64, sprint uint64, validatorContract string, ethAP // method method := "getValidators" - if number < firstEndBlock { + if number <= firstEndBlock { method = "getInitialValidators" }