Skip to content

Commit

Permalink
refactor: start test of proof-block range from 0 height
Browse files Browse the repository at this point in the history
  • Loading branch information
shotonoff committed Aug 31, 2022
1 parent b3dfc89 commit 814198e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internal/consensus/mempool_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ func TestMempoolNoProgressUntilTxsAvailable(t *testing.T) {
defer cancel()

baseConfig := configSetup(t)
for proofBlockRange := int64(1); proofBlockRange <= 3; proofBlockRange++ {
for proofBlockRange := int64(0); proofBlockRange <= 3; proofBlockRange++ {
t.Logf("Checking proof block range %d", proofBlockRange)
config, err := ResetConfig(t.TempDir(), "consensus_mempool_txs_available_test")
require.NoError(t, err)
Expand Down

0 comments on commit 814198e

Please sign in to comment.