1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
use std::collections::VecDeque;
use std::time::Duration;
use alloy::{
network::Ethereum,
primitives::B256,
providers::{DynProvider, Provider},
rpc::types::{BlockNumberOrTag, Filter, Header},
};
use async_stream::stream;
use futures_util::{StreamExt, pin_mut, stream::Stream};
use tokio::time::{Instant, sleep, sleep_until};
use tracing::{debug, error, warn};
use crate::rpc::cursor::{TipGate, TipWait, next_cursor_after_batch};
use crate::rpc::error_tracking::{
ErrorCategory, ProviderErrorTracker, find_active_provider, truncate_error_short,
};
use crate::rpc::{
LogRange, RpcError,
config::{CaptureTarget, ProviderSettings},
};
/// Maximum block range per WS request to prevent "max results" errors
const MAX_BLOCKS_PER_WS_REQUEST: u64 = 300;
/// Coalesce rapid head updates into a bounded polling cadence.
const LIVE_HEAD_COALESCE_WINDOW: Duration = Duration::from_millis(500);
#[derive(Debug, Clone)]
struct HeadCoalescer {
block_cursor: Option<u64>,
latest_seen_head: Option<u64>,
flush_deadline: Option<Instant>,
}
impl HeadCoalescer {
fn new(block_cursor: Option<u64>) -> Self {
Self {
block_cursor,
latest_seen_head: None,
flush_deadline: None,
}
}
fn block_cursor(&self) -> Option<u64> {
self.block_cursor
}
fn observe_head(&mut self, head_number: u64, now: Instant) -> bool {
let from_block = self.block_cursor.unwrap_or(head_number);
if head_number < from_block {
return false;
}
self.latest_seen_head = Some(
self.latest_seen_head
.map_or(head_number, |latest| latest.max(head_number)),
);
if self.flush_deadline.is_none() {
self.flush_deadline = Some(now + LIVE_HEAD_COALESCE_WINDOW);
}
true
}
fn pending_range(&self) -> Option<(u64, u64)> {
let to_block = self.latest_seen_head?;
let from_block = self.block_cursor.unwrap_or(to_block);
(to_block >= from_block).then_some((from_block, to_block))
}
fn flush_deadline(&self) -> Option<Instant> {
self.pending_range()?;
self.flush_deadline
}
fn should_flush(&self, now: Instant) -> bool {
let Some((from_block, to_block)) = self.pending_range() else {
return false;
};
if to_block - from_block + 1 >= MAX_BLOCKS_PER_WS_REQUEST {
return true;
}
self.flush_deadline.is_some_and(|deadline| now >= deadline)
}
fn advance_cursor(&mut self, next_block: u64) {
self.block_cursor = Some(next_block);
if self
.latest_seen_head
.is_some_and(|latest| next_block > latest)
{
self.latest_seen_head = None;
self.flush_deadline = None;
}
}
}
/// Outcome of feeding one head into the live reorg linkage check.
#[derive(Debug, Clone, PartialEq, Eq)]
enum LinkOutcome {
/// The head extends (or bootstraps) the canonical chain — no reorg.
Linked,
/// A reorg whose common ancestor was resolved within the ring.
Reorg { common_ancestor: u64 },
/// The head's parent is not the recorded canonical block and the ancestor
/// could not be resolved from the ring alone (the provider skipped the
/// intermediate new-chain heads). The caller must fetch the parent block by
/// hash and walk the new chain back — bounded RPC, reorg branch only — feeding
/// the fetched `(number, hash)` back through `matches`.
Detached {
parent_hash: B256,
child_number: u64,
},
/// Divergence older than the ring floor (`> finality`): catastrophe.
BeyondFinality,
}
/// A finality-deep ring of canonical `(number, hash)` taken from the head stream,
/// plus a `parent_hash` linkage check. Pure and synchronous — the network is thin
/// glue around it, mirroring `HeadCoalescer`. `depth == 0` disables it: `observe`
/// is then inert and returns `Linked` for every head (zero overhead, the L2 /
/// snapshot default).
#[derive(Debug, Clone)]
struct HeadLinkage {
ring: VecDeque<(u64, B256)>,
depth: u64,
}
impl HeadLinkage {
fn new(depth: u64) -> Self {
Self {
ring: VecDeque::new(),
depth,
}
}
fn enabled(&self) -> bool {
self.depth > 0
}
/// Lowest block number still recorded in the ring (the resolution floor).
fn floor(&self) -> Option<u64> {
self.ring.front().map(|&(number, _)| number)
}
/// Recorded canonical hash at `number`, if it is within the ring.
fn hash_at(&self, number: u64) -> Option<B256> {
let &(front, _) = self.ring.front()?;
let offset = number.checked_sub(front)? as usize;
self.ring.get(offset).map(|&(_, hash)| hash)
}
/// True if the ring records `hash` as canonical at `number`.
fn matches(&self, number: u64, hash: B256) -> bool {
self.hash_at(number) == Some(hash)
}
/// Append `(number, hash)` as the new tip, evicting the oldest beyond `depth`.
fn push(&mut self, number: u64, hash: B256) {
self.ring.push_back((number, hash));
while self.ring.len() as u64 > self.depth {
self.ring.pop_front();
}
}
/// The most recently recorded `(number, hash)` entry (the ring's canonical tip).
///
/// Returns `None` only when the ring is completely empty (before the first
/// `observe`). When `linkage.enabled()` and a flush fires, this is always `Some`
/// because `observe` bootstraps or re-anchors the ring at the newest head before
/// `should_flush` can return true.
fn latest(&self) -> Option<(u64, B256)> {
self.ring.back().copied()
}
/// Re-anchor the ring at `ancestor` (drop everything above it), then record
/// the new-chain head `(number, hash)`.
fn reanchor(&mut self, ancestor: u64, number: u64, hash: B256) {
while self.ring.back().is_some_and(|&(n, _)| n > ancestor) {
self.ring.pop_back();
}
self.push(number, hash);
}
/// Observe one head's `(number, hash, parent_hash)` against the recorded
/// chain. See `LinkOutcome`. Disabled (`depth == 0`) ⇒ always `Linked`.
fn observe(&mut self, number: u64, hash: B256, parent_hash: B256) -> LinkOutcome {
if !self.enabled() {
return LinkOutcome::Linked;
}
let Some(&(tip_number, tip_hash)) = self.ring.back() else {
// Bootstrap: the first head seeds the ring.
self.push(number, hash);
return LinkOutcome::Linked;
};
// The common case: a clean forward extension of the tip.
if number == tip_number + 1 && parent_hash == tip_hash {
self.push(number, hash);
return LinkOutcome::Linked;
}
// A forward gap (heads skipped ahead with no verifiable reorg signal —
// e.g. across a reconnect): linkage cannot be asserted over the gap, so
// re-anchor here rather than risk a false reorg.
if number > tip_number + 1 {
self.ring.clear();
self.push(number, hash);
return LinkOutcome::Linked;
}
// `number <= tip_number + 1` and the parent did not extend the tip:
// a reorg, a duplicate, or a detachment that needs an RPC walk.
let Some(parent_number) = number.checked_sub(1) else {
return LinkOutcome::BeyondFinality;
};
match self.hash_at(parent_number) {
// Parent links to a known canonical block.
Some(canonical_parent) if canonical_parent == parent_hash => {
// Already recorded exactly → duplicate, no-op.
if self.hash_at(number) == Some(hash) {
return LinkOutcome::Linked;
}
// Block `number` was replaced on a chain sharing canonical
// `parent_number` → that is the common ancestor.
self.reanchor(parent_number, number, hash);
LinkOutcome::Reorg {
common_ancestor: parent_number,
}
}
// Parent is within the ring but differs → diverges deeper; the caller
// must walk the new chain back to find the ancestor.
Some(_) => LinkOutcome::Detached {
parent_hash,
child_number: number,
},
// Parent is below the ring floor → beyond finality.
None => LinkOutcome::BeyondFinality,
}
}
}
/// Walk backward from `tip_hash` at `tip_number` down to `from_block`, collecting
/// canonical `(number, hash)` pairs in descending order (tip → from_block).
///
/// Used by the backfill boot path to resolve hashes for the reorg-exposed window
/// before handing off to `stream_heads_with_logs`. Does not touch any ring.
///
/// Error semantics: null block → `ReorgBeyondFinality`; transport fault → `ConnectionError`.
pub(crate) async fn collect_window_hashes(
provider: &DynProvider<Ethereum>,
tip_hash: B256,
tip_number: u64,
from_block: u64,
) -> Result<Vec<(u64, B256)>, RpcError> {
if tip_number < from_block {
return Ok(Vec::new());
}
let mut collected: Vec<(u64, B256)> = Vec::new();
let mut current_hash = tip_hash;
let mut current_number = tip_number;
loop {
collected.push((current_number, current_hash));
if current_number == from_block {
break;
}
let block = match provider.get_block_by_hash(current_hash).await {
Ok(Some(block)) => block,
Ok(None) => return Err(RpcError::ReorgBeyondFinality),
Err(e) => {
return Err(RpcError::ConnectionError(format!(
"window hash walk: block fetch failed: {}",
truncate_error_short(e.to_string(), 100)
)));
}
};
// A by-hash query returning a block with the wrong number is a provider
// integrity violation — fail closed rather than walking past it.
if block.header.number != current_number {
return Err(RpcError::ReorgBeyondFinality);
}
let parent_hash = block.header.parent_hash;
let Some(parent_number) = current_number.checked_sub(1) else {
return Err(RpcError::ReorgBeyondFinality);
};
if parent_number < from_block {
break;
}
current_hash = parent_hash;
current_number = parent_number;
}
Ok(collected)
}
/// Fetch logs for a slice of canonical `(number, hash)` pairs using
/// `at_block_hash` filters — one request per block, ascending.
///
/// `at_block_hash` pins the query to the exact canonical block identified by
/// `hash`, so an orphaned block at that number can never contaminate the result.
/// The caller passes `pairs` in ascending order (from_block → tip).
pub(crate) async fn fetch_logs_by_hash_range(
providers: &ProviderSettings,
pairs: &[(u64, B256)],
base_filter: Option<&Filter>,
) -> Result<Vec<LogRange>, RpcError> {
let mut ranges: Vec<LogRange> = Vec::with_capacity(pairs.len());
for &(number, hash) in pairs {
let query = base_filter
.cloned()
.unwrap_or_else(Filter::new)
.at_block_hash(hash);
let (_, logs) =
get_logs_with_http_fallback_retry(providers, &query, 0, number, number).await?;
ranges.push((number, number, logs));
}
Ok(ranges)
}
/// Flush one pending window range from the coalescer by fetching all logs by
/// canonical block hash.
///
/// When the ring is missing hashes for some blocks (boot gap or post-forward-gap
/// reconnect), walks backward from `linkage.latest()` to collect canonical
/// `(number, hash)` pairs and uses them directly. Never falls back to a by-number
/// fetch — fail-closed is the invariant. Only called when `linkage.enabled()`.
async fn flush_window_range(
linkage: &mut HeadLinkage,
coalescer: &mut HeadCoalescer,
providers: &ProviderSettings,
filter: Option<&Filter>,
provider_index: usize,
) -> Result<Vec<LogRange>, RpcError> {
let Some((from_block, pending_to_block)) = coalescer.pending_range() else {
return Ok(vec![]);
};
let to_block = std::cmp::min(from_block + MAX_BLOCKS_PER_WS_REQUEST - 1, pending_to_block);
// Build the (number, hash) pairs for [from_block, to_block].
// If any hash is absent from the ring, self-heal: walk backward from the
// latest known entry to fill the gap. `latest()` is Some whenever the flush
// fires — `observe` bootstraps or re-anchors at the newest head before
// `should_flush` can return true.
let pairs: Vec<(u64, B256)> = if (from_block..=to_block).all(|n| linkage.hash_at(n).is_some()) {
(from_block..=to_block)
.map(|n| (n, linkage.hash_at(n).expect("just verified")))
.collect()
} else {
let Some((top_n, top_hash)) = linkage.latest() else {
// Ring is completely empty — no anchor for the walk.
return Err(RpcError::ReorgBeyondFinality);
};
let walk_provider = providers.connect_http(provider_index);
let mut pairs_desc =
collect_window_hashes(&walk_provider, top_hash, top_n, from_block).await?;
// Reverse to ascending (from_block → top_n), then restrict to [from_block, to_block].
pairs_desc.reverse();
pairs_desc
.into_iter()
.filter(|&(n, _)| n <= to_block)
.collect()
};
// Fetch the entire batch BEFORE advancing the cursor. On any block's failure,
// return Err with the cursor UNTOUCHED so the whole window range retries on the
// next provider — never advance past a block whose logs were not delivered to the
// consumer (fail-closed; no silent gap). Re-fetch on retry is idempotent.
let mut ranges = Vec::with_capacity(pairs.len());
for &(n, hash) in &pairs {
let query = filter
.cloned()
.unwrap_or_else(Filter::new)
.at_block_hash(hash);
let (_, logs) =
get_logs_with_http_fallback_retry(providers, &query, provider_index, n, n).await?;
ranges.push((n, n, logs));
}
if let Some(&(last, _)) = pairs.last() {
coalescer.advance_cursor(last + 1);
}
Ok(ranges)
}
/// Walk the new chain backward by hash until a block re-links to the recorded
/// canonical ring, returning the resolved `RpcError::Reorg { common_ancestor }`.
///
/// Invoked only on `LinkOutcome::Detached`, when the provider delivered a new-tip
/// head without re-emitting the intermediate new-chain blocks. Bounded to `depth`
/// `get_block_by_hash` fetches (the ring's own span); exhausting them, or walking
/// below the ring floor, means the divergence is older than finality →
/// `ReorgBeyondFinality`. The pure ring is untouched; only this glue does I/O.
async fn resolve_reorg_ancestor(
provider: &DynProvider<Ethereum>,
linkage: &HeadLinkage,
detached_parent: B256,
child_number: u64,
depth: u64,
) -> RpcError {
// `parent_hash` is the new chain's hash at height `parent_number`.
let mut parent_hash = detached_parent;
let Some(mut parent_number) = child_number.checked_sub(1) else {
return RpcError::ReorgBeyondFinality;
};
let floor = linkage.floor().unwrap_or(u64::MAX);
for _ in 0..depth {
if linkage.matches(parent_number, parent_hash) {
return RpcError::Reorg {
common_ancestor: parent_number,
};
}
if parent_number <= floor {
// Cannot descend below the ring floor without leaving the finality window.
return RpcError::ReorgBeyondFinality;
}
let block = match provider.get_block_by_hash(parent_hash).await {
Ok(Some(block)) => block,
Ok(None) => return RpcError::ReorgBeyondFinality,
Err(e) => {
return RpcError::ConnectionError(format!(
"reorg ancestor walk: block-by-hash fetch failed: {}",
truncate_error_short(e.to_string(), 100)
));
}
};
parent_hash = block.header.parent_hash;
let Some(next) = parent_number.checked_sub(1) else {
return RpcError::ReorgBeyondFinality;
};
parent_number = next;
}
RpcError::ReorgBeyondFinality
}
fn fallback_http_index(start_index: usize, attempt: usize, num_http_providers: usize) -> usize {
(start_index + attempt) % num_http_providers
}
fn fallback_http_exhausted_error(
from_block: u64,
to_block: u64,
attempted_hosts: &[String],
last_err: &str,
) -> RpcError {
RpcError::LogFetchError(format!(
"HTTP fallback exhausted for blocks {}-{} after trying providers [{}]: {}",
from_block,
to_block,
attempted_hosts.join(", "),
last_err
))
}
async fn get_logs_with_http_fallback_retry(
providers: &ProviderSettings,
query_filter: &Filter,
start_index: usize,
from_block: u64,
to_block: u64,
) -> Result<(usize, Vec<alloy::rpc::types::Log>), RpcError> {
let num_http_providers = providers.http_providers.len();
let mut attempted_hosts: Vec<String> = Vec::with_capacity(num_http_providers);
let mut last_err = String::new();
for attempt in 0..num_http_providers {
let provider_idx = fallback_http_index(start_index, attempt, num_http_providers);
let provider_host = providers.http_settings(provider_idx).host();
attempted_hosts.push(provider_host.clone());
let http_provider = providers.connect_http(provider_idx);
match http_provider.get_logs(query_filter).await {
Ok(logs) => return Ok((provider_idx, logs)),
Err(err) => {
last_err = err.to_string();
warn!(
"HTTP fallback {} failed for blocks {}-{}: {}",
provider_host,
from_block,
to_block,
truncate_error_short(&last_err, 100)
);
}
}
}
Err(fallback_http_exhausted_error(
from_block,
to_block,
&attempted_hosts,
&last_err,
))
}
async fn stream_heads_provider(
provider: &DynProvider<Ethereum>,
provider_host: &str,
) -> impl Stream<Item = Header> {
stream! {
let head_stream = provider.subscribe_blocks().await;
match head_stream {
Ok(heads) => {
debug!("WebSocket connected, streaming headers...");
let mut s = heads.into_stream();
while let Some(header) = s.next().await {
yield header;
}
}
Err(e) => {
warn!(
"Failed to subscribe to blocks on {}: {} - retrying",
provider_host,
truncate_error_short(e, 100)
);
}
}
}
}
pub async fn stream_heads_with_logs(
providers: &ProviderSettings,
filter: Option<&Filter>,
) -> impl Stream<Item = Result<LogRange, RpcError>> {
let num_providers = providers.wss_endpoints.len();
stream! {
// Initialize per-provider error tracking (same pattern as backfill)
let mut provider_trackers: Vec<ProviderErrorTracker> = (0..num_providers)
.map(|i| {
let host = providers.wss_endpoints[i]
.host_str()
.unwrap_or("unknown")
.to_string();
ProviderErrorTracker::new(host)
})
.collect();
let mut provider_index = 0;
let mut coalescer = HeadCoalescer::new(filter.and_then(|f| f.get_from_block()));
// Live-tip reorg detector. `reorg_detect_depth == 0` (every non-mainnet-live
// consumer) leaves `observe` inert, so this is a no-op on those paths.
let mut linkage = HeadLinkage::new(providers.reorg_detect_depth);
let mut gate = TipGate::new();
loop {
// Find the next non-suspended provider (same pattern as backfill)
let active_provider = find_active_provider(&mut provider_trackers, provider_index);
let Some(idx) = active_provider else {
yield Err(RpcError::AllProvidersSuspended(format!(
"All {} WebSocket providers suspended. Unable to continue streaming.",
num_providers
)));
return;
};
provider_index = idx;
let provider = match providers.connect_ws(provider_index).await {
Ok(p) => {
provider_trackers[provider_index].record_success();
p
}
Err(e) => {
let suspended = provider_trackers[provider_index].record_error();
let backoff = provider_trackers[provider_index].backoff_duration();
if suspended {
warn!(
"WebSocket provider {} suspended after connection failure: {}",
provider_trackers[provider_index].identifier(),
truncate_error_short(&e, 100)
);
} else {
warn!(
"Failed to connect to WebSocket {}: {} - retrying in {:?}",
provider_trackers[provider_index].identifier(),
truncate_error_short(&e, 100),
backoff
);
sleep(backoff).await;
}
provider_index = (provider_index + 1) % num_providers;
continue;
}
};
let provider_host = provider_trackers[provider_index].identifier().to_string();
let s = stream_heads_provider(&provider, &provider_host).await;
pin_mut!(s);
let mut should_switch_provider = false;
loop {
if coalescer.should_flush(Instant::now()) {
// Flush from the cursor through the latest seen head in bounded chunks.
'flush: while let Some((from_block, pending_to_block)) = coalescer.pending_range() {
let to_block =
std::cmp::min(from_block + MAX_BLOCKS_PER_WS_REQUEST - 1, pending_to_block);
// When reorg detection is active fetch logs pinned to the canonical
// hash so a same-number orphaned block on a stale provider cannot
// contaminate the result. When the ring is missing a hash (boot gap
// or post-forward-gap reconnect), `flush_window_range` self-heals by
// walking backward from the latest ring entry — never spinning, never
// falling back to a by-number fetch inside the window.
if linkage.enabled() {
match flush_window_range(
&mut linkage,
&mut coalescer,
providers,
filter,
provider_index,
)
.await
{
Ok(ranges) => {
for range in ranges {
provider_trackers[provider_index].record_success();
yield Ok(range);
}
}
Err(e) => {
warn!(
"by-hash window flush failed: {}",
truncate_error_short(&e, 100)
);
should_switch_provider = true;
break 'flush;
}
}
continue;
}
let query_filter = filter
.cloned()
.unwrap_or_else(Filter::new)
.from_block(from_block)
.to_block(to_block);
let logs = provider.get_logs(&query_filter).await;
match logs {
Ok(logs) => {
provider_trackers[provider_index].record_success();
// Empty batches are ambiguous: they look identical whether the
// range is genuinely event-free or the provider silently returned
// [] for blocks past its actual tip. Verify against the WS
// provider's reported tip before advancing the cursor.
if logs.is_empty() {
match provider.get_block_number().await {
Ok(mut reported_tip) => {
if next_cursor_after_batch(to_block, true, reported_tip).is_err() {
// Provider tip is behind — wait for it to catch up.
let mut wait_cycle: u32 = 0;
'tip_wait: loop {
match gate.observe(reported_tip, providers.tip_wait_max_stall_cycles) {
TipWait::Stall(stalled_cycles) => {
error!(
"WS provider stalled: tip {} did not reach block {} after {} cycles",
reported_tip, to_block, stalled_cycles
);
yield Err(RpcError::ProviderStalled {
to_block,
reported_tip,
stalled_cycles,
});
return;
}
TipWait::Wait => {
wait_cycle += 1;
warn!(
"WS provider tip {} behind block {} — waiting (cycle {})",
reported_tip, to_block, wait_cycle
);
sleep(Duration::from_secs(providers.tip_wait_backoff_secs)).await;
match provider.get_block_number().await {
Ok(new_tip) => {
reported_tip = new_tip;
if reported_tip >= to_block {
break 'tip_wait;
}
}
Err(e) => {
let err_str = e.to_string();
let suspended = provider_trackers[provider_index].record_error();
if suspended {
warn!(
"WebSocket provider {} suspended after tip re-poll failed during tip-wait for blocks {}-{}: {}",
provider_trackers[provider_index].identifier(),
from_block, to_block,
truncate_error_short(&err_str, 100)
);
} else {
let backoff = provider_trackers[provider_index].backoff_duration();
warn!(
"Tip re-poll failed during wait for blocks {}-{} from {}: {} - backing off {:?}",
from_block, to_block,
provider_trackers[provider_index].identifier(),
truncate_error_short(&err_str, 100),
backoff
);
sleep(backoff).await;
}
should_switch_provider = true;
break 'flush;
}
}
}
}
}
// Tip caught up — re-fetch the same range without advancing the cursor.
continue 'flush;
}
}
Err(e) => {
let err_str = e.to_string();
let suspended = provider_trackers[provider_index].record_error();
if suspended {
warn!(
"WebSocket provider {} suspended after tip fetch failed during empty-batch guard for blocks {}-{}: {}",
provider_trackers[provider_index].identifier(),
from_block, to_block,
truncate_error_short(&err_str, 100)
);
} else {
let backoff = provider_trackers[provider_index].backoff_duration();
warn!(
"Tip fetch failed during empty-batch guard for blocks {}-{} from {}: {} - backing off {:?}",
from_block, to_block,
provider_trackers[provider_index].identifier(),
truncate_error_short(&err_str, 100),
backoff
);
sleep(backoff).await;
}
should_switch_provider = true;
break;
}
}
}
yield Ok((from_block, to_block, logs));
coalescer.advance_cursor(to_block + 1);
gate.reset();
}
Err(e) => {
let error_msg = e.to_string();
let error_category = ErrorCategory::from_error_msg(&error_msg);
match error_category {
ErrorCategory::ResponseTooLarge => {
// Fall back to HTTP provider for this batch
warn!(
"Response too large for blocks {}-{}, falling back to HTTP RPC: {}",
from_block, to_block, truncate_error_short(&error_msg, 100)
);
match get_logs_with_http_fallback_retry(
providers,
&query_filter,
provider_index,
from_block,
to_block,
)
.await
{
Ok((http_provider_idx, logs)) => {
provider_trackers[provider_index].record_success();
// Empty fallback responses are ambiguous — a lagging
// HTTP provider can legitimately return [] for blocks
// past its own tip. Verify against the HTTP provider
// that served this response, not the WS provider.
if logs.is_empty() {
let http_provider = providers.connect_http(http_provider_idx);
let http_host = providers.http_settings(http_provider_idx).host();
match http_provider.get_block_number().await {
Ok(mut reported_tip) => {
if next_cursor_after_batch(to_block, true, reported_tip).is_err() {
// HTTP fallback tip is behind — wait for it to catch up.
let mut wait_cycle: u32 = 0;
'tip_wait_http: loop {
match gate.observe(reported_tip, providers.tip_wait_max_stall_cycles) {
TipWait::Stall(stalled_cycles) => {
error!(
"HTTP fallback {} stalled: tip {} did not reach block {} after {} cycles",
http_host, reported_tip, to_block, stalled_cycles
);
yield Err(RpcError::ProviderStalled {
to_block,
reported_tip,
stalled_cycles,
});
return;
}
TipWait::Wait => {
wait_cycle += 1;
warn!(
"HTTP fallback {} tip {} behind block {} — waiting (cycle {})",
http_host, reported_tip, to_block, wait_cycle
);
sleep(Duration::from_secs(providers.tip_wait_backoff_secs)).await;
match http_provider.get_block_number().await {
Ok(new_tip) => {
reported_tip = new_tip;
if reported_tip >= to_block {
break 'tip_wait_http;
}
}
Err(e) => {
warn!(
"HTTP fallback {} tip re-poll failed during tip-wait for blocks {}-{}: {}",
http_host, from_block, to_block,
truncate_error_short(e.to_string(), 100)
);
should_switch_provider = true;
break 'flush;
}
}
}
}
}
// Tip caught up — re-fetch the same range without advancing the cursor.
continue 'flush;
}
}
Err(e) => {
warn!(
"HTTP fallback {} tip fetch failed during empty-batch guard for blocks {}-{}: {}",
http_host, from_block, to_block,
truncate_error_short(e.to_string(), 100)
);
should_switch_provider = true;
break;
}
}
}
yield Ok((from_block, to_block, logs));
coalescer.advance_cursor(to_block + 1);
gate.reset();
}
Err(http_err) => {
warn!(
"HTTP fallback retry exhausted for blocks {}-{}: {}",
from_block,
to_block,
truncate_error_short(&http_err, 100)
);
should_switch_provider = true;
break;
}
}
}
ErrorCategory::RateLimit => {
// Rate limit: apply backoff but stay on same provider
provider_trackers[provider_index].record_error();
let backoff = provider_trackers[provider_index].backoff_duration();
warn!(
"Rate limit hit on WS provider {} for blocks {}-{}: {} - backing off {:?}",
provider_trackers[provider_index].identifier(),
from_block, to_block,
truncate_error_short(&error_msg, 100),
backoff
);
sleep(backoff).await;
// Retry same block range after backoff
continue;
}
ErrorCategory::Connection | ErrorCategory::Other => {
// Connection error or unknown: record error and switch provider
let suspended = provider_trackers[provider_index].record_error();
if suspended {
warn!(
"WebSocket provider {} suspended after error on blocks {}-{}: {}",
provider_trackers[provider_index].identifier(),
from_block, to_block,
truncate_error_short(&error_msg, 100)
);
} else {
let backoff = provider_trackers[provider_index].backoff_duration();
warn!(
"Error fetching logs for blocks {}-{} from {}: {} - backing off {:?}",
from_block, to_block,
provider_trackers[provider_index].identifier(),
truncate_error_short(&error_msg, 100),
backoff
);
sleep(backoff).await;
}
should_switch_provider = true;
break;
}
}
}
}
}
if should_switch_provider {
break;
}
continue;
}
let maybe_header = if let Some(deadline) = coalescer.flush_deadline() {
tokio::select! {
maybe_header = s.next() => maybe_header,
_ = sleep_until(deadline) => {
continue;
}
}
} else {
s.next().await
};
match maybe_header {
Some(header) => {
let now = Instant::now();
let head_number = header.number;
if !coalescer.observe_head(head_number, now) {
let from_block = coalescer.block_cursor().unwrap_or(head_number);
warn!(
"Skipping header {} as it's before the cursor {}",
head_number, from_block
);
}
// Reorg detection runs alongside the coalescer's number-based
// flush — a parallel `(number, hash, parent_hash)` linkage check.
// Disabled (depth 0) ⇒ `observe` is inert and this is a no-op.
// On a reorg we emit and end the stream; the consumer decides
// resume-from-ancestor (P3 rollback) vs terminate (P2).
match linkage.observe(head_number, header.hash, header.parent_hash) {
LinkOutcome::Linked => {}
LinkOutcome::Reorg { common_ancestor } => {
warn!(
"reorg at head {}: common ancestor {} — ending stream for consumer recovery",
head_number, common_ancestor
);
yield Err(RpcError::Reorg { common_ancestor });
return;
}
LinkOutcome::Detached {
parent_hash,
child_number,
} => {
let err = resolve_reorg_ancestor(
&provider,
&linkage,
parent_hash,
child_number,
providers.reorg_detect_depth,
)
.await;
match &err {
RpcError::Reorg { common_ancestor } => warn!(
"reorg at head {} (walked new chain): common ancestor {} — ending stream",
head_number, common_ancestor
),
_ => warn!(
"reorg at head {} beyond the detector ring — ending stream",
head_number
),
}
yield Err(err);
return;
}
LinkOutcome::BeyondFinality => {
warn!(
"reorg beyond finality at head {}: no common ancestor within the detector ring — ending stream",
head_number
);
yield Err(RpcError::ReorgBeyondFinality);
return;
}
}
}
None => break,
}
}
// Stream ended (connection lost) - record as error and switch provider
if !should_switch_provider {
// Stream ended naturally without explicit error
provider_trackers[provider_index].record_error();
let backoff = provider_trackers[provider_index].backoff_duration();
warn!(
"WS connection to {} lost or stream ended - reconnecting in {:?}",
provider_trackers[provider_index].identifier(),
backoff
);
sleep(backoff).await;
}
// Move to next provider for round-robin (same pattern as backfill)
provider_index = (provider_index + 1) % num_providers;
}
}
}
pub async fn last_block(providers: &ProviderSettings) -> Result<u64, RpcError> {
let num_providers = providers.http_providers.len();
if num_providers == 0 {
return Err(RpcError::ConnectionError(
"No HTTP providers configured for latest block fetch".to_string(),
));
}
let mut index: usize = 0;
loop {
// Round-robin provider selection so latest-block fetch can fail over.
let provider_index = index % num_providers;
let provider = providers.connect_http(provider_index);
match provider.get_block_number().await {
Ok(block_number) => return Ok(block_number),
Err(e) => {
let provider_host = providers.http_settings(provider_index).host();
if index >= 10 {
return Err(RpcError::ConnectionError(format!(
"Failed to fetch latest block number after {} attempts from HTTP provider {}: {}",
index, provider_host, e
)));
}
index += 1;
warn!(
"Failed to fetch latest block number from HTTP provider {} (index {}) - retrying",
provider_host, provider_index
);
let progressive_sleep = (5 * index).min(50) as u64;
sleep(Duration::from_secs(progressive_sleep)).await;
}
}
}
}
/// Resolve the block number to use as the capture target based on `settings.capture_target`.
///
/// - `Latest` → current chain tip (existing behavior).
/// - `Lag(n)` → tip saturating_sub n.
/// - `Finalized` → the `finalized` tagged block; returns `Err` if the provider returns none.
///
/// Emits a one-time `warn!` when a deep-lag policy is active so operators notice
/// the intentional delay in their logs.
pub async fn resolve_capture_target(settings: &ProviderSettings) -> Result<u64, RpcError> {
match settings.capture_target {
CaptureTarget::Latest => last_block(settings).await,
CaptureTarget::Lag(n) => {
let tip = last_block(settings).await?;
warn!(
"ethl DEEP LAG ACTIVE (reorg-safety): capturing to tip - {} = block {}.\n\
This build AVOIDS reorgs by lagging; events within {} blocks of tip are DELAYED.",
n,
tip.saturating_sub(n),
n,
);
Ok(tip.saturating_sub(n))
}
CaptureTarget::Finalized => {
let provider = settings.connect_http(0);
let result = provider
.get_block_by_number(BlockNumberOrTag::Finalized)
.await
.map_err(|e| {
RpcError::ConnectionError(format!("finalized block fetch failed: {e}"))
})?;
match result {
Some(block) => {
let finalized = block.header.number;
warn!(
"ethl DEEP LAG ACTIVE (reorg-safety): capturing to `finalized` block {}.\n\
(~2 epochs ≈ 64 blocks ≈ 13 min behind chain tip).\n\
This build AVOIDS reorgs by lagging; events within ~64 blocks of tip are DELAYED.",
finalized
);
Ok(finalized)
}
None => Err(RpcError::Other(
"Provider returned no finalized block; cannot determine safe capture target. \
Ensure the provider supports the `finalized` tag (mainnet only)."
.to_string(),
)),
}
}
}
}
#[cfg(test)]
mod tests {
use super::{
HeadCoalescer, HeadLinkage, LIVE_HEAD_COALESCE_WINDOW, LinkOutcome,
MAX_BLOCKS_PER_WS_REQUEST, RpcError, collect_window_hashes, fallback_http_exhausted_error,
fallback_http_index, fetch_logs_by_hash_range, flush_window_range, resolve_reorg_ancestor,
};
use crate::rpc::config::ProviderSettings;
use alloy::primitives::B256;
use alloy::providers::{Provider, ProviderBuilder};
use alloy::transports::mock::Asserter;
use std::time::Duration;
use tokio::time::Instant;
/// Distinct synthetic block hash; `byte` keeps old/new chains separable.
fn hb(byte: u8) -> B256 {
B256::repeat_byte(byte)
}
#[test]
fn fallback_http_index_wraps_round_robin() {
assert_eq!(fallback_http_index(0, 0, 3), 0);
assert_eq!(fallback_http_index(0, 1, 3), 1);
assert_eq!(fallback_http_index(0, 2, 3), 2);
assert_eq!(fallback_http_index(0, 3, 3), 0);
assert_eq!(fallback_http_index(2, 1, 3), 0);
}
#[test]
fn fallback_http_exhausted_error_includes_hosts() {
let err = fallback_http_exhausted_error(
100,
120,
&["rpc.ankr.com".to_string(), "mainnet.infura.io".to_string()],
"timeout",
)
.to_string();
assert!(err.contains("rpc.ankr.com"));
assert!(err.contains("mainnet.infura.io"));
assert!(err.contains("timeout"));
}
#[test]
fn head_coalescer_ignores_stale_heads_before_cursor() {
let now = Instant::now();
let mut coalescer = HeadCoalescer::new(Some(42));
assert!(!coalescer.observe_head(41, now));
assert_eq!(coalescer.pending_range(), None);
assert_eq!(coalescer.flush_deadline(), None);
}
#[test]
fn head_coalescer_keeps_first_flush_deadline_while_heads_accumulate() {
let now = Instant::now();
let mut coalescer = HeadCoalescer::new(Some(100));
assert!(coalescer.observe_head(100, now));
let deadline = coalescer.flush_deadline().unwrap();
assert!(coalescer.observe_head(105, now + Duration::from_millis(50)));
assert_eq!(coalescer.pending_range(), Some((100, 105)));
assert_eq!(coalescer.flush_deadline(), Some(deadline));
assert!(
!coalescer.should_flush(now + LIVE_HEAD_COALESCE_WINDOW - Duration::from_millis(1))
);
assert!(coalescer.should_flush(now + LIVE_HEAD_COALESCE_WINDOW));
}
#[test]
fn head_coalescer_flushes_immediately_when_pending_range_reaches_chunk_limit() {
let now = Instant::now();
let mut coalescer = HeadCoalescer::new(Some(1));
assert!(coalescer.observe_head(MAX_BLOCKS_PER_WS_REQUEST, now));
assert_eq!(
coalescer.pending_range(),
Some((1, MAX_BLOCKS_PER_WS_REQUEST))
);
assert!(coalescer.should_flush(now));
}
#[test]
fn head_coalescer_preserves_pending_range_across_partial_cursor_advances() {
let now = Instant::now();
let mut coalescer = HeadCoalescer::new(Some(10));
assert!(coalescer.observe_head(25, now));
coalescer.advance_cursor(20);
assert_eq!(coalescer.pending_range(), Some((20, 25)));
assert!(coalescer.flush_deadline().is_some());
coalescer.advance_cursor(26);
assert_eq!(coalescer.pending_range(), None);
assert_eq!(coalescer.flush_deadline(), None);
assert_eq!(coalescer.block_cursor(), Some(26));
}
#[test]
fn head_coalescer_handles_mainnet_slow_blocks() {
// Ethereum mainnet: ~12 s/block. Each head must flush in a single 500 ms coalesce window;
// the chunk-limit guard (MAX_BLOCKS_PER_WS_REQUEST) must never trigger for live cadence.
let now = Instant::now();
let mut coalescer = HeadCoalescer::new(Some(1_000_000));
// First mainnet head observed.
assert!(coalescer.observe_head(1_000_000, now));
assert_eq!(coalescer.pending_range(), Some((1_000_000, 1_000_000)));
// Must not flush before the coalesce window expires.
assert!(!coalescer.should_flush(now + Duration::from_millis(499)));
// Must flush once the window expires.
assert!(coalescer.should_flush(now + LIVE_HEAD_COALESCE_WINDOW));
// Advance cursor; simulate the next block arriving ~12 s later.
coalescer.advance_cursor(1_000_001);
assert_eq!(coalescer.pending_range(), None);
let t12s = now + Duration::from_secs(12);
assert!(coalescer.observe_head(1_000_001, t12s));
assert_eq!(coalescer.pending_range(), Some((1_000_001, 1_000_001)));
// One block in range: chunk limit (300) must not fire.
assert!(!coalescer.should_flush(t12s));
assert!(coalescer.should_flush(t12s + LIVE_HEAD_COALESCE_WINDOW));
}
/// Synthetic block with explicit `number` and `parentHash`.
///
/// Use this for tests that exercise `collect_window_hashes`, which now
/// cross-checks `block.header.number == current_number` (fail-closed).
fn block_with_parent_at(number: u64, parent: B256) -> serde_json::Value {
let zero = hb(0).to_string();
serde_json::json!({
"hash": zero,
"parentHash": parent.to_string(),
"sha3Uncles": zero,
"miner": "0x0000000000000000000000000000000000000000",
"stateRoot": zero,
"transactionsRoot": zero,
"receiptsRoot": zero,
"logsBloom": format!("0x{}", "0".repeat(512)),
"difficulty": "0x0",
"number": format!("0x{:x}", number),
"gasLimit": "0x0",
"gasUsed": "0x0",
"timestamp": "0x0",
"extraData": "0x",
"mixHash": zero,
"nonce": "0x0000000000000000",
"transactions": [],
"uncles": []
})
}
/// Synthetic block whose only meaningful field is `parentHash`.
///
/// For `resolve_reorg_ancestor` tests, the block number is not checked, so
/// passing 0 is fine. Use `block_with_parent_at` when `collect_window_hashes`
/// is under test (it cross-checks the block number).
fn block_with_parent(parent: B256) -> serde_json::Value {
block_with_parent_at(0, parent)
}
/// Seed a linkage with a clean canonical chain `[lo, hi]` (hash = `hb(n)`).
fn seed_chain(depth: u64, lo: u64, hi: u64) -> HeadLinkage {
let mut linkage = HeadLinkage::new(depth);
for n in lo..=hi {
let parent = if n == lo {
hb((lo - 1) as u8)
} else {
hb((n - 1) as u8)
};
assert_eq!(linkage.observe(n, hb(n as u8), parent), LinkOutcome::Linked);
}
linkage
}
#[test]
fn head_linkage_disabled_is_inert() {
let mut linkage = HeadLinkage::new(0);
// A blatant parent mismatch still returns Linked when depth == 0.
assert_eq!(linkage.observe(100, hb(1), hb(9)), LinkOutcome::Linked);
assert_eq!(linkage.observe(101, hb(2), hb(7)), LinkOutcome::Linked);
assert_eq!(linkage.floor(), None);
}
#[test]
fn head_linkage_clean_chain_advances_and_bounds_ring() {
let linkage = seed_chain(3, 100, 103);
// Ring is bounded at depth = 3; the oldest entry (100) is evicted.
assert_eq!(linkage.floor(), Some(101));
assert_eq!(linkage.hash_at(100), None);
assert_eq!(linkage.hash_at(103), Some(hb(103)));
}
#[test]
fn head_linkage_one_block_reorg_reports_parent_as_ancestor() {
let mut linkage = seed_chain(8, 100, 103);
// 103' replaces 103, still building on canonical 102 → ancestor 102.
assert_eq!(
linkage.observe(103, hb(203), hb(102)),
LinkOutcome::Reorg {
common_ancestor: 102
}
);
// Ring re-anchored: 103 now records the new hash, clean extension resumes.
assert_eq!(linkage.hash_at(103), Some(hb(203)));
assert_eq!(linkage.observe(104, hb(204), hb(203)), LinkOutcome::Linked);
}
#[test]
fn head_linkage_deep_reorg_via_reemit_reports_deeper_ancestor() {
let mut linkage = seed_chain(8, 100, 105);
// Provider re-emits the new chain from 101 (parent = canonical 100): a
// five-block-deep reorg, resolved in-ring at common ancestor 100.
assert_eq!(
linkage.observe(101, hb(201), hb(100)),
LinkOutcome::Reorg {
common_ancestor: 100
}
);
}
#[test]
fn head_linkage_skipped_intermediate_heads_detach() {
let mut linkage = seed_chain(8, 100, 103);
// Provider jumps to new tip 104' whose parent 103' (hb(203)) we never saw;
// the parent at 103 differs from canonical → Detached, needs an RPC walk.
match linkage.observe(104, hb(204), hb(203)) {
LinkOutcome::Detached {
parent_hash,
child_number,
} => {
assert_eq!(parent_hash, hb(203));
assert_eq!(child_number, 104);
}
other => panic!("expected Detached, got {other:?}"),
}
}
#[test]
fn head_linkage_divergence_below_floor_is_beyond_finality() {
// Ring covers [103, 105]; floor = 103.
let mut linkage = seed_chain(3, 100, 105);
assert_eq!(linkage.floor(), Some(103));
// A head whose parent (102) is below the ring floor cannot be resolved,
// and no ancestor is fabricated.
assert_eq!(
linkage.observe(103, hb(203), hb(202)),
LinkOutcome::BeyondFinality
);
}
#[tokio::test]
async fn resolve_reorg_ancestor_walks_skipped_chain_to_common_ancestor() {
// Canonical ring [100, 103]; new chain shares ancestor 101.
let linkage = seed_chain(8, 100, 103);
// New tip 104' detached at parent 103' (hb(203)); the walk fetches
// 103' (parent 102' = hb(202)) then 102' (parent 101 = hb(101) ∈ ring).
let asserter = Asserter::new();
asserter.push_success(&block_with_parent(hb(202)));
asserter.push_success(&block_with_parent(hb(101)));
let provider = ProviderBuilder::new()
.disable_recommended_fillers()
.connect_mocked_client(asserter)
.erased();
let err = resolve_reorg_ancestor(&provider, &linkage, hb(203), 104, 8).await;
assert!(
matches!(
err,
RpcError::Reorg {
common_ancestor: 101
}
),
"got {err:?}"
);
}
#[tokio::test]
async fn resolve_reorg_ancestor_exhausts_ring_as_beyond_finality() {
// Shallow ring [102, 103] (depth 2); floor = 102.
let linkage = seed_chain(2, 100, 103);
assert_eq!(linkage.floor(), Some(102));
// New tip 104' detached at 103' (hb(203)); the walk fetches 103' (parent
// 102' = hb(202)), which differs from canonical 102 at the floor.
let asserter = Asserter::new();
asserter.push_success(&block_with_parent(hb(202)));
let provider = ProviderBuilder::new()
.disable_recommended_fillers()
.connect_mocked_client(asserter)
.erased();
let err = resolve_reorg_ancestor(&provider, &linkage, hb(203), 104, 2).await;
assert!(matches!(err, RpcError::ReorgBeyondFinality), "got {err:?}");
}
// ── Task A: pure observe shapes ──────────────────────────────────────────
#[test]
fn head_linkage_back_to_back_reorgs_ring_stays_coherent() {
// Seed canonical [100, 105]; depth=8 so all fit and no eviction yet.
let mut linkage = seed_chain(8, 100, 105);
// ForkA: 104' replaces 104, building on canonical 103 → ancestor 103.
assert_eq!(
linkage.observe(104, hb(204), hb(103)),
LinkOutcome::Reorg {
common_ancestor: 103
}
);
// Ring re-anchored at 103; 104 now records new-chain hash.
assert_eq!(linkage.hash_at(104), Some(hb(204)));
// Extend forkA's chain by one clean block.
assert_eq!(linkage.observe(105, hb(205), hb(204)), LinkOutcome::Linked);
// ForkB: a competing 105'' builds on forkA's 104 (canonical ancestor 104).
// Use hb(49) for forkB's hash — a byte distinct from forkA's range (hb(200+)).
assert_eq!(
linkage.observe(105, hb(49), hb(204)),
LinkOutcome::Reorg {
common_ancestor: 104
}
);
// Ring re-anchored at 104; 105 records forkB hash; ring stays bounded.
assert_eq!(linkage.hash_at(105), Some(hb(49)));
assert_eq!(linkage.hash_at(104), Some(hb(204))); // unchanged by forkB
assert!(linkage.ring.len() as u64 <= 8);
}
#[test]
fn head_linkage_multi_header_same_height_duplicate_vs_replace() {
let mut linkage = seed_chain(8, 100, 104);
// Re-observing the canonical tip with its exact hash → no-op (Linked).
assert_eq!(linkage.observe(104, hb(104), hb(103)), LinkOutcome::Linked);
assert_eq!(linkage.hash_at(104), Some(hb(104)));
// A competing block at the same height with a different hash, same parent
// → replace, ancestor = 103.
assert_eq!(
linkage.observe(104, hb(204), hb(103)),
LinkOutcome::Reorg {
common_ancestor: 103
}
);
assert_eq!(linkage.hash_at(104), Some(hb(204)));
}
#[test]
fn head_linkage_identical_hash_no_op() {
// The `hash_at(number) == Some(hash)` branch: re-observing an already
// recorded (number, hash) pair returns Linked and leaves the ring alone.
let mut linkage = seed_chain(8, 100, 104);
let floor_before = linkage.floor();
let depth_before = linkage.ring.len();
assert_eq!(linkage.observe(104, hb(104), hb(103)), LinkOutcome::Linked);
assert_eq!(linkage.floor(), floor_before);
assert_eq!(linkage.ring.len(), depth_before);
assert_eq!(linkage.hash_at(104), Some(hb(104)));
}
#[test]
fn head_linkage_forward_gap_reanchors_without_false_reorg() {
// `number > tip + 1`: heads skipped ahead (e.g. across a reconnect).
// The distinct arm clears the ring + re-anchors at the new head — no reorg.
let mut linkage = seed_chain(8, 100, 103); // tip = 103
assert_eq!(linkage.observe(107, hb(107), hb(106)), LinkOutcome::Linked);
// Old entries gone; ring re-anchored at 107 only.
assert_eq!(linkage.floor(), Some(107));
assert_eq!(linkage.ring.len(), 1);
assert_eq!(linkage.hash_at(103), None);
// Clean extension from the new tip continues normally.
assert_eq!(linkage.observe(108, hb(108), hb(107)), LinkOutcome::Linked);
assert_eq!(linkage.floor(), Some(107));
assert_eq!(linkage.ring.len(), 2);
}
#[test]
fn head_linkage_idempotent_reanchor_bounds_ring() {
// After a reorg, a clean chain links cleanly and the ring stays bounded.
let mut linkage = seed_chain(5, 100, 106); // ring [102,103,104,105,106] (evicted 100,101)
assert_eq!(linkage.floor(), Some(102));
// Reorg: 105' replaces 105, ancestor 104.
assert_eq!(
linkage.observe(105, hb(205), hb(104)),
LinkOutcome::Reorg {
common_ancestor: 104
}
);
assert_eq!(linkage.hash_at(105), Some(hb(205)));
// Extend cleanly from the new chain tip.
assert_eq!(linkage.observe(106, hb(206), hb(205)), LinkOutcome::Linked);
assert_eq!(linkage.observe(107, hb(207), hb(206)), LinkOutcome::Linked);
// Ring still bounded at depth 5; oldest entry evicted.
assert!(linkage.ring.len() as u64 <= 5);
assert_eq!(linkage.hash_at(105), Some(hb(205))); // new-chain hash retained
assert_eq!(linkage.hash_at(102), None); // evicted
}
// ── Task B: resolve_reorg_ancestor walk-depth matrix ────────────────────
// Shared ring for the in-window rows: depth=15, canonical [100,109], floor=100,
// tip=109. Each test detaches at child=111 (parent_number=110 ∉ ring).
// k pushes → common ancestor at 110-k. Rings are distinct from catastrophe rows.
#[tokio::test]
async fn resolve_reorg_ancestor_walk_depth_1() {
let linkage = seed_chain(15, 100, 109);
let asserter = Asserter::new();
asserter.push_success(&block_with_parent(hb(109))); // 110'→canonical 109
let provider = ProviderBuilder::new()
.disable_recommended_fillers()
.connect_mocked_client(asserter)
.erased();
let err = resolve_reorg_ancestor(&provider, &linkage, hb(200), 111, 15).await;
assert!(
matches!(
err,
RpcError::Reorg {
common_ancestor: 109
}
),
"got {err:?}"
);
}
#[tokio::test]
async fn resolve_reorg_ancestor_walk_depth_2() {
let linkage = seed_chain(15, 100, 109);
let asserter = Asserter::new();
asserter.push_success(&block_with_parent(hb(201))); // 110'→109'
asserter.push_success(&block_with_parent(hb(108))); // 109'→canonical 108
let provider = ProviderBuilder::new()
.disable_recommended_fillers()
.connect_mocked_client(asserter)
.erased();
let err = resolve_reorg_ancestor(&provider, &linkage, hb(200), 111, 15).await;
assert!(
matches!(
err,
RpcError::Reorg {
common_ancestor: 108
}
),
"got {err:?}"
);
}
#[tokio::test]
async fn resolve_reorg_ancestor_walk_depth_3() {
let linkage = seed_chain(15, 100, 109);
let asserter = Asserter::new();
asserter.push_success(&block_with_parent(hb(201))); // 110'→109'
asserter.push_success(&block_with_parent(hb(202))); // 109'→108'
asserter.push_success(&block_with_parent(hb(107))); // 108'→canonical 107
let provider = ProviderBuilder::new()
.disable_recommended_fillers()
.connect_mocked_client(asserter)
.erased();
let err = resolve_reorg_ancestor(&provider, &linkage, hb(200), 111, 15).await;
assert!(
matches!(
err,
RpcError::Reorg {
common_ancestor: 107
}
),
"got {err:?}"
);
}
#[tokio::test]
async fn resolve_reorg_ancestor_walk_depth_7() {
let linkage = seed_chain(15, 100, 109);
let asserter = Asserter::new();
// Six intermediate new-chain blocks (hb(201)..hb(206)), then canonical 103.
asserter.push_success(&block_with_parent(hb(201)));
asserter.push_success(&block_with_parent(hb(202)));
asserter.push_success(&block_with_parent(hb(203)));
asserter.push_success(&block_with_parent(hb(204)));
asserter.push_success(&block_with_parent(hb(205)));
asserter.push_success(&block_with_parent(hb(206)));
asserter.push_success(&block_with_parent(hb(103))); // final→canonical 103
let provider = ProviderBuilder::new()
.disable_recommended_fillers()
.connect_mocked_client(asserter)
.erased();
let err = resolve_reorg_ancestor(&provider, &linkage, hb(200), 111, 15).await;
assert!(
matches!(
err,
RpcError::Reorg {
common_ancestor: 103
}
),
"got {err:?}"
);
}
#[tokio::test]
async fn resolve_reorg_ancestor_deepest_in_ring_resolves() {
// Ring depth=5, canonical [100,104], floor=100. Child=105 → 4 fetches →
// ancestor=100 (the floor). With depth=5 the loop runs 5 iterations: the
// match check at the start of iter 4 fires after 4 prior fetches bring
// parent_number to 100. Using child=106 would need 6 iterations (off by one).
let linkage = seed_chain(5, 100, 104);
let asserter = Asserter::new();
asserter.push_success(&block_with_parent(hb(201))); // 104'→103'
asserter.push_success(&block_with_parent(hb(202))); // 103'→102'
asserter.push_success(&block_with_parent(hb(203))); // 102'→101'
asserter.push_success(&block_with_parent(hb(100))); // 101'→canonical 100
let provider = ProviderBuilder::new()
.disable_recommended_fillers()
.connect_mocked_client(asserter)
.erased();
let err = resolve_reorg_ancestor(&provider, &linkage, hb(200), 105, 5).await;
assert!(
matches!(
err,
RpcError::Reorg {
common_ancestor: 100
}
),
"got {err:?}"
);
}
#[tokio::test]
async fn resolve_reorg_ancestor_loop_exhausted_is_beyond_finality() {
// Depth cap (depth=3) prevents resolution: the loop exhausts its 3 iterations
// without finding a matching canonical ancestor. Uses a distinct ring from the
// in-window rows (depth=3, seed [100,109] → ring [107,108,109], floor=107).
let linkage = seed_chain(3, 100, 109);
assert_eq!(linkage.floor(), Some(107));
let asserter = Asserter::new();
asserter.push_success(&block_with_parent(hb(201)));
asserter.push_success(&block_with_parent(hb(202)));
asserter.push_success(&block_with_parent(hb(203))); // loop ends after this fetch
let provider = ProviderBuilder::new()
.disable_recommended_fillers()
.connect_mocked_client(asserter)
.erased();
let err = resolve_reorg_ancestor(&provider, &linkage, hb(200), 111, 3).await;
assert!(matches!(err, RpcError::ReorgBeyondFinality), "got {err:?}");
}
#[tokio::test]
async fn resolve_reorg_ancestor_parent_at_floor_is_beyond_finality() {
// `parent_number <= floor` fires before any fetch: detached_parent sits
// exactly at the ring floor, which the walk cannot descend below.
let linkage = seed_chain(10, 100, 109); // floor = 100
let asserter = Asserter::new(); // no pushes needed
let provider = ProviderBuilder::new()
.disable_recommended_fillers()
.connect_mocked_client(asserter)
.erased();
// child=101 → parent_number=100 = floor; first iteration hits the floor check.
let err = resolve_reorg_ancestor(&provider, &linkage, hb(200), 101, 10).await;
assert!(matches!(err, RpcError::ReorgBeyondFinality), "got {err:?}");
}
#[tokio::test]
async fn resolve_reorg_ancestor_null_response_is_beyond_finality() {
// `Ok(None)` from `get_block_by_hash` (provider claims it doesn't have the
// block) is treated conservatively as `> finality`, not a transport error.
let linkage = seed_chain(15, 100, 109);
let asserter = Asserter::new();
asserter.push_success(&serde_json::json!(null));
let provider = ProviderBuilder::new()
.disable_recommended_fillers()
.connect_mocked_client(asserter)
.erased();
let err = resolve_reorg_ancestor(&provider, &linkage, hb(200), 111, 15).await;
assert!(matches!(err, RpcError::ReorgBeyondFinality), "got {err:?}");
}
#[tokio::test]
async fn resolve_reorg_ancestor_transport_error_is_connection_error() {
// A mid-walk transport error is recoverable (the stream can restart and
// re-attempt); it must NOT collapse into `ReorgBeyondFinality` and trigger
// do-not-serve. Assert `ConnectionError`, not `ReorgBeyondFinality`.
let linkage = seed_chain(15, 100, 109);
let asserter = Asserter::new();
asserter.push_failure_msg("transport blip");
let provider = ProviderBuilder::new()
.disable_recommended_fillers()
.connect_mocked_client(asserter)
.erased();
let err = resolve_reorg_ancestor(&provider, &linkage, hb(200), 111, 15).await;
assert!(matches!(err, RpcError::ConnectionError(_)), "got {err:?}");
}
// ── P3.4: by-hash recovery for the reorg-exposed tail ───────────────────
/// Canonical chain [100, 103]; `collect_window_hashes` walks backward from
/// tip=103 (hash=hb(103)) to from_block=100 using `get_block_by_hash`.
/// Each block response carries the parent hash. Then `fetch_logs_by_hash_range`
/// issues one `get_logs` per block pinned to the canonical hash (ascending).
/// Assert: four LogRanges covering [100,100]..[103,103], one log each.
#[tokio::test]
async fn by_hash_tail_fetch_over_mock() {
// Asserter for the walk: three get_block_by_hash calls (103→102→101; 100 == from_block,
// loop ends without fetching 100's parent). Must use block_with_parent_at so the
// number cross-check in collect_window_hashes passes.
let walk_asserter = Asserter::new();
walk_asserter.push_success(&block_with_parent_at(103, hb(102))); // block 103 → parent 102
walk_asserter.push_success(&block_with_parent_at(102, hb(101))); // block 102 → parent 101
walk_asserter.push_success(&block_with_parent_at(101, hb(100))); // block 101 → parent 100
let walk_provider = ProviderBuilder::new()
.disable_recommended_fillers()
.connect_mocked_client(walk_asserter)
.erased();
let pairs_desc = collect_window_hashes(&walk_provider, hb(103), 103, 100)
.await
.expect("walk should succeed");
// Pairs are in descending order: [(103,hb(103)), (102,hb(102)), (101,hb(101)), (100,hb(100))].
assert_eq!(pairs_desc.len(), 4);
assert_eq!(pairs_desc[0], (103, hb(103)));
assert_eq!(pairs_desc[1], (102, hb(102)));
assert_eq!(pairs_desc[2], (101, hb(101)));
assert_eq!(pairs_desc[3], (100, hb(100)));
// Reverse to ascending for the log fetch.
let mut pairs = pairs_desc;
pairs.reverse();
// Asserter for the log fetches: four get_logs calls, one per block.
// Each returns a single synthetic log tagged with the block number.
let log_asserter = Asserter::new();
for n in 100u64..=103 {
log_asserter.push_success(&serde_json::json!([{
"address": "0x0000000000000000000000000000000000000001",
"topics": [],
"data": "0x",
"blockHash": hb(n as u8).to_string(),
"blockNumber": format!("0x{:x}", n),
"transactionHash": hb(0).to_string(),
"transactionIndex": "0x0",
"logIndex": "0x0",
"removed": false
}]));
}
let log_provider = ProviderBuilder::new()
.disable_recommended_fillers()
.connect_mocked_client(log_asserter)
.erased();
let settings = ProviderSettings::from_mock(log_provider);
let ranges = fetch_logs_by_hash_range(&settings, &pairs, None)
.await
.expect("log fetch should succeed");
// Four LogRanges, each a single block with one log.
assert_eq!(ranges.len(), 4, "expected one range per block");
for (i, (from, to, logs)) in ranges.iter().enumerate() {
let block_n = 100u64 + i as u64;
assert_eq!(*from, block_n, "from_block mismatch at index {i}");
assert_eq!(*to, block_n, "to_block mismatch at index {i}");
assert_eq!(logs.len(), 1, "expected one log at block {block_n}");
assert_eq!(
logs[0].block_number,
Some(block_n),
"log block number mismatch"
);
}
}
/// `flush_window_range` fetches in-window blocks by canonical hash only.
///
/// Setup: ring holds canonical hb(200) for block 200. The mock has exactly one
/// log response — the canonical log tagged with hb(200). The mock also has an
/// "orphan" log queued second (tagged with a different hash). If by-number were
/// used, the asserter would return responses in order and the test would get the
/// canonical log (first) for the by-number call — so instead we prove by-number
/// is never invoked structurally: `flush_window_range` is the by-hash-only path;
/// the mock has only ONE response queued; if a second call (by-number fallback)
/// happened, `flush_window_range` would panic on an exhausted asserter.
#[tokio::test]
async fn orphan_rejection() {
let canonical_log = serde_json::json!([{
"address": "0xCAFECAFECAFECAFECAFECAFECAFECAFECAFECAFE",
"topics": [],
"data": "0x01",
"blockHash": hb(200).to_string(),
"blockNumber": "0xc8",
"transactionHash": hb(1).to_string(),
"transactionIndex": "0x0",
"logIndex": "0x0",
"removed": false
}]);
// One response only. A by-number fallback would exhaust the asserter and panic.
let asserter = Asserter::new();
asserter.push_success(&canonical_log);
let settings = ProviderSettings::from_mock(
ProviderBuilder::new()
.disable_recommended_fillers()
.connect_mocked_client(asserter)
.erased(),
);
// Ring holds canonical hash for block 200; coalescer has [200, 200] pending.
let mut linkage = HeadLinkage::new(8);
linkage.observe(200, hb(200), hb(199)); // bootstraps ring with (200, hb(200))
let mut coalescer = HeadCoalescer::new(Some(200));
coalescer.observe_head(200, Instant::now());
let ranges = flush_window_range(&mut linkage, &mut coalescer, &settings, None, 0)
.await
.expect("flush should succeed");
assert_eq!(ranges.len(), 1, "one range per block");
let (from, to, logs) = &ranges[0];
assert_eq!((*from, *to), (200, 200));
assert_eq!(logs.len(), 1, "canonical log returned");
assert_eq!(
logs[0].block_hash,
Some(hb(200)),
"log must carry the canonical block hash, not an orphan's"
);
// Cursor advanced past block 200.
assert_eq!(coalescer.pending_range(), None);
}
/// A null block response from `get_block_by_hash` during the hash walk is
/// classified as `ReorgBeyondFinality` (fail-closed). A transport error is
/// classified as `ConnectionError` (not `ReorgBeyondFinality`) so the caller
/// can distinguish a recoverable network fault from a genuine finality violation.
#[tokio::test]
async fn hash_mismatch_null_block_fail_closed() {
// Null block → ReorgBeyondFinality.
{
let asserter = Asserter::new();
asserter.push_success(&serde_json::json!(null));
let provider = ProviderBuilder::new()
.disable_recommended_fillers()
.connect_mocked_client(asserter)
.erased();
// Walk from block 5 (hash hb(5)) down to block 1; the first fetch returns null.
let err = collect_window_hashes(&provider, hb(5), 5, 1)
.await
.expect_err("null block must be an error");
assert!(
matches!(err, RpcError::ReorgBeyondFinality),
"null block must yield ReorgBeyondFinality, got {err:?}"
);
}
// Transport error → ConnectionError (not ReorgBeyondFinality).
{
let asserter = Asserter::new();
asserter.push_failure_msg("connection reset");
let provider = ProviderBuilder::new()
.disable_recommended_fillers()
.connect_mocked_client(asserter)
.erased();
let err = collect_window_hashes(&provider, hb(5), 5, 1)
.await
.expect_err("transport error must be an error");
assert!(
matches!(err, RpcError::ConnectionError(_)),
"transport fault must yield ConnectionError, got {err:?}"
);
}
}
/// When `depth == 0` the by-hash path is never entered.
/// `HeadLinkage::enabled()` returns false; `observe` returns `Linked` for every
/// head regardless of parent mismatch. No `get_block_by_hash` call is issued.
#[test]
fn dormancy_at_depth_zero() {
let mut linkage = HeadLinkage::new(0);
assert!(!linkage.enabled(), "depth=0 must be disabled");
// Any head — even one with a bogus parent — must return Linked.
assert_eq!(
linkage.observe(100, hb(1), hb(99)),
LinkOutcome::Linked,
"depth=0 must not trigger reorg detection"
);
assert_eq!(
linkage.observe(101, hb(2), hb(55)), // obviously wrong parent
LinkOutcome::Linked,
"depth=0 must not trigger reorg detection on bad parent"
);
// Ring stays empty: no state accrues when disabled.
assert_eq!(
linkage.floor(),
None,
"disabled linkage must not record state"
);
}
/// After the boot gap is flushed by `flush_window_range`, the ring holds the
/// first observed head. The production path for the NEXT head is a clean
/// `observe` extension — no false reorg fires.
///
/// In production: `stream_heads_with_logs` creates a fresh empty ring, then
/// `observe(first_head)` bootstraps it. `flush_window_range` handles the gap
/// [cursor, first_head] using the walked pairs directly (no ring seeding).
/// The second head (first_head + 1) then links cleanly via the normal parent
/// check — because `observe(first_head+1)` checks ring.back() = first_head.
#[test]
fn boot_tail_seeds_ring() {
// Production state after first head 105 arrives: ring bootstrapped to {105}.
let mut linkage = HeadLinkage::new(8);
assert_eq!(
linkage.observe(105, hb(105), hb(104)),
LinkOutcome::Linked,
"bootstrap observe"
);
assert_eq!(linkage.hash_at(105), Some(hb(105)));
// After flush_window_range handles [cursor=101, 105], the cursor moves to 106.
// The next WS head is 106 with correct parent hb(105) — must link cleanly.
assert_eq!(
linkage.observe(106, hb(106), hb(105)),
LinkOutcome::Linked,
"first post-flush head must link without false reorg"
);
assert_eq!(linkage.hash_at(106), Some(hb(106)));
// Subsequent heads also link cleanly.
assert_eq!(linkage.observe(107, hb(107), hb(106)), LinkOutcome::Linked);
}
// ── P3.4 addendum: live flush self-heal + orphan rejection ──────────────
/// REGRESSION — live flush with a head gap must not wedge.
///
/// Scenario: depth=8, cursor=101, first WS head is 105 (gap [101,104]).
/// Before the fix the flush found `hash_at(101) = None`, broke out of the for
/// loop, and `continue`d the `'flush while` with the cursor unmoved — an
/// infinite spin. After the fix `flush_window_range` self-heals by walking from
/// ring.latest() (105) back to 101, then fetches logs for each block by hash.
///
/// The test is bounded by tokio's async executor; a spin would deadlock it.
#[tokio::test]
async fn live_flush_gap_self_heals() {
// Ring: observe(105) bootstraps to {105}. Cursor: 101.
let mut linkage = HeadLinkage::new(8);
assert_eq!(linkage.observe(105, hb(105), hb(104)), LinkOutcome::Linked);
let mut coalescer = HeadCoalescer::new(Some(101));
coalescer.observe_head(105, Instant::now());
assert_eq!(coalescer.pending_range(), Some((101, 105)));
// Mock: walk 105→104→103→102 (4 get_block_by_hash calls; 101==from_block so no
// fetch for 101 itself). Then 5 get_logs (at_block_hash) for blocks 101..=105.
let asserter = Asserter::new();
asserter.push_success(&block_with_parent_at(105, hb(104)));
asserter.push_success(&block_with_parent_at(104, hb(103)));
asserter.push_success(&block_with_parent_at(103, hb(102)));
asserter.push_success(&block_with_parent_at(102, hb(101)));
for _ in 101u64..=105 {
asserter.push_success(&serde_json::json!([]));
}
let settings = ProviderSettings::from_mock(
ProviderBuilder::new()
.disable_recommended_fillers()
.connect_mocked_client(asserter)
.erased(),
);
let ranges = flush_window_range(&mut linkage, &mut coalescer, &settings, None, 0)
.await
.expect("flush must succeed, not spin");
assert_eq!(ranges.len(), 5, "one LogRange per block 101..=105");
for (i, (from, to, _)) in ranges.iter().enumerate() {
let n = 101u64 + i as u64;
assert_eq!((*from, *to), (n, n));
}
// Cursor advanced past all flushed blocks.
assert_eq!(coalescer.pending_range(), None);
}
/// After a forward-gap reconnect the ring is cleared to just the new head.
/// The next flush must self-heal the gap without spinning.
#[tokio::test]
async fn forward_gap_mid_stream_self_heals() {
// Steady state: ring covers [100, 103] after 4 clean heads.
let mut linkage = HeadLinkage::new(8);
for n in 100u64..=103 {
let parent = hb((n - 1) as u8);
assert_eq!(linkage.observe(n, hb(n as u8), parent), LinkOutcome::Linked);
}
// Forward gap: head 107 arrives (skipping 104-106) → ring cleared + re-anchored.
assert_eq!(
linkage.observe(107, hb(107), hb(106)),
LinkOutcome::Linked,
"forward gap re-anchors without false reorg"
);
assert_eq!(linkage.ring.len(), 1, "ring holds only the new head");
assert_eq!(linkage.hash_at(107), Some(hb(107)));
assert_eq!(linkage.hash_at(103), None, "old entries cleared");
// Coalescer: cursor stayed at 104 (the flush hadn't advanced it yet).
let mut coalescer = HeadCoalescer::new(Some(104));
coalescer.observe_head(107, Instant::now());
assert_eq!(coalescer.pending_range(), Some((104, 107)));
// Mock: walk 107→106→105→104 (3 block fetches; 104==from_block, stops there).
// Then 4 get_logs at_block_hash for 104..=107.
let asserter = Asserter::new();
asserter.push_success(&block_with_parent_at(107, hb(106)));
asserter.push_success(&block_with_parent_at(106, hb(105)));
asserter.push_success(&block_with_parent_at(105, hb(104)));
for _ in 104u64..=107 {
asserter.push_success(&serde_json::json!([]));
}
let settings = ProviderSettings::from_mock(
ProviderBuilder::new()
.disable_recommended_fillers()
.connect_mocked_client(asserter)
.erased(),
);
let ranges = flush_window_range(&mut linkage, &mut coalescer, &settings, None, 0)
.await
.expect("mid-stream gap flush must not spin");
assert_eq!(ranges.len(), 4, "blocks 104..=107");
assert_eq!(coalescer.pending_range(), None);
}
/// `collect_window_hashes`: a by-hash response whose `header.number` does not
/// match the expected number is a provider integrity violation — fail closed.
#[tokio::test]
async fn collect_window_hashes_number_mismatch() {
// Walk from tip=5 to from_block=1; mock returns a block claiming number=99.
let asserter = Asserter::new();
asserter.push_success(&block_with_parent_at(99, hb(4))); // wrong number
let provider = ProviderBuilder::new()
.disable_recommended_fillers()
.connect_mocked_client(asserter)
.erased();
let err = collect_window_hashes(&provider, hb(5), 5, 1)
.await
.expect_err("number mismatch must be an error");
assert!(
matches!(err, RpcError::ReorgBeyondFinality),
"number mismatch must yield ReorgBeyondFinality, got {err:?}"
);
}
/// `flush_window_range`: when `latest()` is None (ring completely empty),
/// the function returns `ReorgBeyondFinality` rather than panicking.
#[tokio::test]
async fn flush_window_range_empty_ring_is_fail_closed() {
let asserter = Asserter::new(); // no responses needed
let settings = ProviderSettings::from_mock(
ProviderBuilder::new()
.disable_recommended_fillers()
.connect_mocked_client(asserter)
.erased(),
);
let mut linkage = HeadLinkage::new(8); // empty ring (no observe yet)
let mut coalescer = HeadCoalescer::new(Some(100));
coalescer.observe_head(100, Instant::now());
let err = flush_window_range(&mut linkage, &mut coalescer, &settings, None, 0)
.await
.expect_err("empty ring must be fail-closed");
assert!(matches!(err, RpcError::ReorgBeyondFinality), "got {err:?}");
}
/// The backfill window boundary: blocks strictly below `tip - depth` are
/// fetched by number (the normal backfill path); blocks `>= tip - depth` (within
/// the reorg-exposed window) are fetched by hash.
///
/// This test exercises the predicate logic directly: given a specific tip and
/// depth, verify that `from_block >= tip.saturating_sub(depth)` correctly
/// partitions the range.
#[test]
fn window_boundary() {
// tip = 1000, depth = 50: window starts at 950.
let tip: u64 = 1000;
let depth: u64 = 50;
let window_floor = tip.saturating_sub(depth); // 950
// Blocks below the window floor are served by the backfill-by-number path.
for n in [0u64, 500, 949] {
assert!(
n < window_floor,
"block {n} should be below the window floor {window_floor}"
);
}
// The window floor itself and everything above it is in the by-hash zone.
for n in [950u64, 975, 1000] {
assert!(
n >= window_floor,
"block {n} should be inside the by-hash window (floor {window_floor})"
);
}
// Saturating_sub at depth == 0 yields u64::MAX (no window) — the by-hash
// path is never entered, matching the dormancy_at_depth_zero invariant.
let no_window_floor = tip.saturating_sub(0);
assert_eq!(no_window_floor, tip, "depth=0 must not create a window");
// Depth larger than tip saturates at 0: the entire history is in the window.
let huge_depth_floor = tip.saturating_sub(tip + 1);
assert_eq!(
huge_depth_floor, 0,
"depth > tip must floor at 0 (all blocks in window)"
);
}
/// REGRESSION — a partial failure in a multi-block flush must not silently
/// skip earlier blocks.
///
/// Before the fix, `flush_window_range` advanced `coalescer.advance_cursor`
/// inside the fetch loop. If block 201's fetch failed after 200 succeeded,
/// the cursor advanced past 200 and its logs were discarded. On reconnect the
/// stream resumed from 201, silently skipping block 200.
///
/// After the fix the cursor is only advanced once the ENTIRE batch succeeds.
/// This test fails against the pre-fix code (cursor at 201) and passes after
/// (cursor stays at 200 — the whole range retries on the next provider).
#[tokio::test]
async fn flush_window_range_partial_failure_leaves_cursor_unmoved() {
// Ring: blocks 200 and 201 observed (clean chain).
let mut linkage = HeadLinkage::new(8);
assert_eq!(linkage.observe(200, hb(200), hb(199)), LinkOutcome::Linked);
assert_eq!(linkage.observe(201, hb(201), hb(200)), LinkOutcome::Linked);
// Coalescer: cursor at 200, head 201 seen → pending [200, 201].
let mut coalescer = HeadCoalescer::new(Some(200));
coalescer.observe_head(201, Instant::now());
assert_eq!(coalescer.pending_range(), Some((200, 201)));
// Single mocked HTTP provider (from_mock): one queued success (block 200's
// get_logs), then one queued failure (block 201's get_logs). With a single
// provider, one failure exhausts all retry attempts.
let asserter = Asserter::new();
asserter.push_success(&serde_json::json!([])); // block 200 logs succeed
asserter.push_failure_msg("transient error"); // block 201 logs fail
let settings = ProviderSettings::from_mock(
ProviderBuilder::new()
.disable_recommended_fillers()
.connect_mocked_client(asserter)
.erased(),
);
let result = flush_window_range(&mut linkage, &mut coalescer, &settings, None, 0).await;
// Must return Err — the batch did not complete.
assert!(result.is_err(), "partial failure must return Err");
// The cursor must NOT have advanced past block 200 — the whole range must
// retry on the next provider so block 200 is not silently skipped.
assert_eq!(
coalescer.pending_range(),
Some((200, 201)),
"cursor must stay at 200 so block 200 is not silently skipped on reconnect"
);
}
/// Hermetic wiring proof for the live consumption loop:
/// observe_head → observe → should_flush → flush_window_range → [ranges]
/// → observe_reorg → LinkOutcome::Reorg
///
/// This directly sequences the operations `stream_heads_with_logs` performs
/// in its inner loop and asserts the correct outcomes at each step. It covers
/// the two behaviors that had no hermetic test: the gap self-heal path and the
/// reorg-terminate path.
///
/// Residual: the outer WS-reconnect/failover loop in `stream_heads_with_logs`
/// is exercised only by the `#[ignore]`d network test (`test_event_streamer_head`
/// in `tests/events_test.rs`). A full seam extraction was evaluated and deferred
/// to avoid restructuring the core stream at a release gate (tokio test-util feature
/// is not enabled in this crate, so time-paused tests are not available).
#[tokio::test]
async fn live_loop_wiring_gap_then_reorg() {
// Coalescer: cursor at 101 (live filter from_block = 101).
// Linkage: depth 8.
let now = Instant::now();
let mut coalescer = HeadCoalescer::new(Some(101));
let mut linkage = HeadLinkage::new(8);
// Step 1: head 105 arrives with a gap (101-104 skipped).
// observe_head extends the coalescer's pending range to [101, 105].
assert!(coalescer.observe_head(105, now));
assert_eq!(coalescer.pending_range(), Some((101, 105)));
// observe bootstraps the ring to {105} (forward-gap path: ring.clear() + push).
assert_eq!(linkage.observe(105, hb(105), hb(104)), LinkOutcome::Linked);
assert_eq!(linkage.latest(), Some((105, hb(105))));
// Step 2: simulate time advancing past the coalesce window by querying
// should_flush with a synthetic instant past the deadline.
// (tokio test-util / time::pause is not available in this crate's feature set.)
let after_window = now + LIVE_HEAD_COALESCE_WINDOW + Duration::from_millis(1);
assert!(
coalescer.should_flush(after_window),
"coalesce window expired — flush must fire"
);
// Step 3: flush_window_range self-heals the gap [101, 105].
// Walk: get_block_by_hash for hb(105)→hb(104)→hb(103)→hb(102) (4 fetches;
// 101==from_block so the walk stops after pushing block 101).
// Logs: 5 get_logs at_block_hash for blocks 101..=105.
// Both walk and log calls use the same mocked HTTP provider.
let asserter = Asserter::new();
asserter.push_success(&block_with_parent_at(105, hb(104)));
asserter.push_success(&block_with_parent_at(104, hb(103)));
asserter.push_success(&block_with_parent_at(103, hb(102)));
asserter.push_success(&block_with_parent_at(102, hb(101)));
for _ in 101u64..=105 {
asserter.push_success(&serde_json::json!([]));
}
let settings = ProviderSettings::from_mock(
ProviderBuilder::new()
.disable_recommended_fillers()
.connect_mocked_client(asserter)
.erased(),
);
let ranges = flush_window_range(&mut linkage, &mut coalescer, &settings, None, 0)
.await
.expect("gap self-heal must succeed");
assert_eq!(ranges.len(), 5, "one range per block 101..=105");
for (i, &(from, to, _)) in ranges.iter().enumerate() {
let n = 101u64 + i as u64;
assert_eq!((from, to), (n, n), "range at index {i} must be block {n}");
}
// Cursor advanced past the full batch — no silent gap.
assert_eq!(
coalescer.pending_range(),
None,
"cursor must be at 106 after flush"
);
// Step 4: two more clean heads arrive and link.
assert_eq!(linkage.observe(106, hb(106), hb(105)), LinkOutcome::Linked);
assert_eq!(linkage.observe(107, hb(107), hb(106)), LinkOutcome::Linked);
// Step 5: a competing block 107 with the same parent (hb(106)) but a
// different hash (hb(250)) triggers a reorg. The ring has canonical hb(107)
// at 107; a new block with parent matching canonical hb(106) at 106 produces
// Reorg { common_ancestor: 106 }. `stream_heads_with_logs` would yield
// Err(RpcError::Reorg { common_ancestor: 106 }) and return here.
let outcome = linkage.observe(107, hb(250), hb(106));
assert!(
matches!(
outcome,
LinkOutcome::Reorg {
common_ancestor: 106
}
),
"competing block at 107 with canonical parent must produce Reorg{{106}}, got {outcome:?}"
);
}
}