Skip to content

Commit

Permalink
feat(genesis): sperating chain params from genesis params
Browse files Browse the repository at this point in the history
  • Loading branch information
kehiy committed Aug 12, 2024
1 parent 597f994 commit c44faab
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions tests/main_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -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
)

Expand Down

0 comments on commit c44faab

Please sign in to comment.