@@ -174,6 +174,7 @@ describe('simulateTransaction', () => {
174
174
err : null ,
175
175
innerInstructions : null ,
176
176
logs : expect . any ( Array ) ,
177
+ replacementBlockhash : null ,
177
178
returnData : null ,
178
179
unitsConsumed : expect . any ( BigInt ) ,
179
180
} ,
@@ -284,6 +285,7 @@ describe('simulateTransaction', () => {
284
285
err : null ,
285
286
innerInstructions : null ,
286
287
logs : expect . any ( Array ) ,
288
+ replacementBlockhash : null ,
287
289
returnData : null ,
288
290
unitsConsumed : expect . any ( BigInt ) ,
289
291
} ,
@@ -323,6 +325,7 @@ describe('simulateTransaction', () => {
323
325
err : 'BlockhashNotFound' ,
324
326
innerInstructions : null ,
325
327
logs : expect . any ( Array ) ,
328
+ replacementBlockhash : null ,
326
329
returnData : null ,
327
330
unitsConsumed : expect . any ( BigInt ) ,
328
331
} ,
@@ -362,6 +365,10 @@ describe('simulateTransaction', () => {
362
365
err : null ,
363
366
innerInstructions : null ,
364
367
logs : expect . any ( Array ) ,
368
+ replacementBlockhash : {
369
+ blockhash : expect . any ( String ) ,
370
+ lastValidBlockHeight : expect . any ( BigInt ) ,
371
+ } ,
365
372
returnData : null ,
366
373
unitsConsumed : expect . any ( BigInt ) ,
367
374
} ,
@@ -464,6 +471,7 @@ describe('simulateTransaction', () => {
464
471
err : 'AccountNotFound' ,
465
472
innerInstructions : null ,
466
473
logs : expect . any ( Array ) ,
474
+ replacementBlockhash : null ,
467
475
returnData : null ,
468
476
unitsConsumed : expect . any ( BigInt ) ,
469
477
} ,
@@ -513,6 +521,7 @@ describe('simulateTransaction', () => {
513
521
err : null ,
514
522
innerInstructions : null ,
515
523
logs : expect . any ( Array ) ,
524
+ replacementBlockhash : null ,
516
525
returnData : null ,
517
526
unitsConsumed : expect . any ( BigInt ) ,
518
527
} ,
@@ -562,6 +571,7 @@ describe('simulateTransaction', () => {
562
571
err : null ,
563
572
innerInstructions : null ,
564
573
logs : expect . any ( Array ) ,
574
+ replacementBlockhash : null ,
565
575
returnData : null ,
566
576
unitsConsumed : expect . any ( BigInt ) ,
567
577
} ,
@@ -628,6 +638,7 @@ describe('simulateTransaction', () => {
628
638
err : null ,
629
639
innerInstructions : null ,
630
640
logs : expect . any ( Array ) ,
641
+ replacementBlockhash : null ,
631
642
returnData : null ,
632
643
unitsConsumed : expect . any ( BigInt ) ,
633
644
} ,
@@ -678,6 +689,7 @@ describe('simulateTransaction', () => {
678
689
err : null ,
679
690
innerInstructions : null ,
680
691
logs : expect . any ( Array ) ,
692
+ replacementBlockhash : null ,
681
693
returnData : null ,
682
694
unitsConsumed : expect . any ( BigInt ) ,
683
695
} ,
@@ -727,6 +739,7 @@ describe('simulateTransaction', () => {
727
739
innerInstructions : null ,
728
740
729
741
logs : expect . any ( Array ) ,
742
+ replacementBlockhash : null ,
730
743
returnData : null ,
731
744
unitsConsumed : expect . any ( BigInt ) ,
732
745
} ,
@@ -781,6 +794,7 @@ describe('simulateTransaction', () => {
781
794
err : null ,
782
795
innerInstructions : null ,
783
796
logs : expect . any ( Array ) ,
797
+ replacementBlockhash : null ,
784
798
returnData : null ,
785
799
unitsConsumed : expect . any ( BigInt ) ,
786
800
} ,
@@ -821,6 +835,7 @@ describe('simulateTransaction', () => {
821
835
err : null ,
822
836
innerInstructions : null ,
823
837
logs : expect . any ( Array ) ,
838
+ replacementBlockhash : null ,
824
839
returnData : null ,
825
840
unitsConsumed : expect . any ( BigInt ) ,
826
841
} ,
0 commit comments