Skip to content

Commit

Permalink
fix merge conflicts (0xPolygonHermez#3536)
Browse files Browse the repository at this point in the history
  • Loading branch information
tclemos authored Apr 5, 2024
1 parent f8bc049 commit 7cb456a
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion state/pgstatestorage/pgstatestorage_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -1086,7 +1086,11 @@ func TestGetLogsByBlockNumber(t *testing.T) {
if err != nil {
panic(err)
}
testState = state.NewState(stateCfg, pgstatestorage.NewPostgresStorage(cfg, stateDb), executorClient, stateTree, nil, mt)
mtr, err := l1infotree.NewL1InfoTreeRecursive(32)
if err != nil {
panic(err)
}
testState = state.NewState(stateCfg, pgstatestorage.NewPostgresStorage(cfg, stateDb), executorClient, stateTree, nil, mt, mtr)

dbTx, err := testState.BeginStateTransaction(ctx)
require.NoError(t, err)
Expand Down

0 comments on commit 7cb456a

Please sign in to comment.