fix test error

This commit is contained in:
rkapka
2020-10-08 12:44:11 +02:00
parent f4acd6e977
commit 2a5c9eec63

View File

@@ -92,7 +92,7 @@ func TestService_ReceiveBlock(t *testing.T) {
},
check: func(t *testing.T, s *Service) {
var n int
for i := uint64(0); int(i) < genesis.NumValidators(); i++ {
for i := uint64(0); i < genesis.NumValidators(); i++ {
if s.exitPool.HasBeenIncluded(i) {
n++
}