Skip to content

Commit

Permalink
fix/ correct the expected nonce for generateErrorTestCase in TIL
Browse files Browse the repository at this point in the history
  • Loading branch information
kaiden-araki committed Nov 14, 2024
1 parent d3958c4 commit 5184326
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sequencer/test/til/txs_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -233,7 +233,7 @@ func TestGenerateErrors(t *testing.T) {
tc = NewContext(0, common.RollupConstMaxL1UserTx)
_, err = tc.GenerateBlocks(set)
require.NoError(t, err)
assert.Equal(t, common.Nonce(2), tc.Accounts["A"].Nonce)
assert.Equal(t, common.Nonce(1), tc.Accounts["A"].Nonce)
assert.Equal(t, common.AccountIdx(256), tc.Accounts["A"].Idx)

// check vouching syntax errors on L1
Expand Down

0 comments on commit 5184326

Please sign in to comment.