@@ -47,7 +47,7 @@ func TestExecutor_RestartUsesPendingHeader(t *testing.T) {
4747 // Create first executor instance
4848 mockExec1 := testmocks .NewMockExecutor (t )
4949 mockSeq1 := testmocks .NewMockSequencer (t )
50- hb1 := common.NewMockBroadcaster [* types.SignedHeader ](t )
50+ hb1 := common.NewMockBroadcaster [* types.SignedHeaderWithDAHint ](t )
5151 hb1 .EXPECT ().WriteToStoreAndBroadcast (mock .Anything , mock .Anything ).Return (nil ).Maybe ()
5252 db1 := common.NewMockBroadcaster [* types.Data ](t )
5353 db1 .EXPECT ().WriteToStoreAndBroadcast (mock .Anything , mock .Anything ).Return (nil ).Maybe ()
@@ -166,7 +166,7 @@ func TestExecutor_RestartUsesPendingHeader(t *testing.T) {
166166 // Create second executor instance (restart scenario)
167167 mockExec2 := testmocks .NewMockExecutor (t )
168168 mockSeq2 := testmocks .NewMockSequencer (t )
169- hb2 := common.NewMockBroadcaster [* types.SignedHeader ](t )
169+ hb2 := common.NewMockBroadcaster [* types.SignedHeaderWithDAHint ](t )
170170 hb2 .EXPECT ().WriteToStoreAndBroadcast (mock .Anything , mock .Anything ).Return (nil ).Maybe ()
171171 db2 := common.NewMockBroadcaster [* types.Data ](t )
172172 db2 .EXPECT ().WriteToStoreAndBroadcast (mock .Anything , mock .Anything ).Return (nil ).Maybe ()
@@ -264,7 +264,7 @@ func TestExecutor_RestartNoPendingHeader(t *testing.T) {
264264 // Create first executor and produce one block
265265 mockExec1 := testmocks .NewMockExecutor (t )
266266 mockSeq1 := testmocks .NewMockSequencer (t )
267- hb1 := common.NewMockBroadcaster [* types.SignedHeader ](t )
267+ hb1 := common.NewMockBroadcaster [* types.SignedHeaderWithDAHint ](t )
268268 hb1 .EXPECT ().WriteToStoreAndBroadcast (mock .Anything , mock .Anything ).Return (nil ).Maybe ()
269269 db1 := common.NewMockBroadcaster [* types.Data ](t )
270270 db1 .EXPECT ().WriteToStoreAndBroadcast (mock .Anything , mock .Anything ).Return (nil ).Maybe ()
@@ -316,7 +316,7 @@ func TestExecutor_RestartNoPendingHeader(t *testing.T) {
316316 // Create second executor (restart)
317317 mockExec2 := testmocks .NewMockExecutor (t )
318318 mockSeq2 := testmocks .NewMockSequencer (t )
319- hb2 := common.NewMockBroadcaster [* types.SignedHeader ](t )
319+ hb2 := common.NewMockBroadcaster [* types.SignedHeaderWithDAHint ](t )
320320 hb2 .EXPECT ().WriteToStoreAndBroadcast (mock .Anything , mock .Anything ).Return (nil ).Maybe ()
321321 db2 := common.NewMockBroadcaster [* types.Data ](t )
322322 db2 .EXPECT ().WriteToStoreAndBroadcast (mock .Anything , mock .Anything ).Return (nil ).Maybe ()
0 commit comments