zakura-state 6.2.0

State contextual verification and storage code for the Zakura node. Internal crate, published to support cargo install zakura
Documentation
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
//! Error types for Zebra's state.

use std::{path::PathBuf, sync::Arc};

use chrono::{DateTime, Utc};
use derive_new::new;
use thiserror::Error;

use zakura_chain::{
    amount::{self, NegativeAllowed, NonNegative},
    block,
    history_tree::HistoryTreeError,
    ironwood, orchard, sapling, sprout,
    subtree::NoteCommitmentSubtreeIndex,
    transaction, transparent,
    value_balance::{ValueBalance, ValueBalanceError},
    work::difficulty::CompactDifficulty,
};

use crate::{
    constants::{MAX_HEADER_SYNC_HEIGHT_RANGE, MIN_TRANSPARENT_COINBASE_MATURITY},
    HashOrHeight, KnownBlock,
};

/// A wrapper for type erased errors that is itself clonable and implements the
/// Error trait
#[derive(Debug, Error, Clone)]
#[error(transparent)]
pub struct CloneError {
    source: Arc<dyn std::error::Error + Send + Sync + 'static>,
}

impl From<CommitSemanticallyVerifiedError> for CloneError {
    fn from(source: CommitSemanticallyVerifiedError) -> Self {
        let source = Arc::new(source);
        Self { source }
    }
}

impl From<BoxError> for CloneError {
    fn from(source: BoxError) -> Self {
        let source = Arc::from(source);
        Self { source }
    }
}

/// A boxed [`std::error::Error`].
pub type BoxError = Box<dyn std::error::Error + Send + Sync + 'static>;

/// The finalized database has blocks but no persisted Sprout tip frontier.
#[derive(Clone, Debug, Error, Eq, PartialEq)]
#[error("missing Sprout note commitment tree at finalized tip {tip:?}")]
pub struct MissingSproutTipTree {
    /// The finalized tip whose Sprout frontier is missing.
    pub tip: block::Height,
}

/// The per-height note commitment tree for a historical block was never written, because this
/// database was built by the verified-commitment-trees fast-sync path.
///
/// Fast sync skips per-height trees across the half-open band `[U, H)`, where `U` is the first
/// height this binary committed and `H` is the last checkpoint. Read handlers return this
/// instead of an absent tree so the RPC boundary reports a diagnosable archive-mode failure:
/// clients following the lightwalletd contract read an absent treestate as the *empty* tree, and
/// would silently derive a wallet birthday anchor asserting an empty commitment tree deep in the
/// chain.
#[derive(Clone, Debug, Error, Eq, PartialEq)]
#[error(
    "historical note commitment tree at {hash_or_height} is unavailable: this node was fast-synced \
     with verified commitment trees, so per-height trees below the last checkpoint \
     {last_checkpoint:?} \
     were never written"
)]
pub struct HistoricalTreeUnavailable {
    /// The block whose per-height tree was requested.
    pub hash_or_height: HashOrHeight,

    /// The last checkpoint height `H`: the exclusive upper bound of the absent band.
    pub last_checkpoint: block::Height,
}

/// A completed note commitment subtree root was never recorded, because this database was built
/// by the verified-commitment-trees fast-sync path.
///
/// Subtree roots are a by-product of the per-height tree maintenance the fast path skips, so
/// every subtree that completed at or below the last checkpoint is missing. Read handlers
/// return this instead of an empty subtree list, which a client would otherwise read as "this
/// chain has no subtrees here" and seed nothing, failing later without a clear cause.
#[derive(Clone, Debug, Error, Eq, PartialEq)]
#[error(
    "historical {pool} note commitment subtree {index:?} is unavailable at last checkpoint \
     {last_checkpoint:?}: {reason}"
)]
pub struct HistoricalSubtreeUnavailable {
    /// The shielded pool whose subtree was requested, in `z_getsubtreesbyindex` spelling.
    pub pool: &'static str,

    /// The requested starting subtree index.
    pub index: NoteCommitmentSubtreeIndex,

    /// The last checkpoint height `H`, below which no subtree roots were recorded.
    pub last_checkpoint: block::Height,

    /// What this node knows about the subtree's availability.
    pub reason: HistoricalSubtreeUnavailableReason,
}

/// Why a requested historical subtree is currently unavailable.
#[derive(Clone, Copy, Debug, Error, Eq, PartialEq)]
pub enum HistoricalSubtreeUnavailableReason {
    /// The node has not reached the fast-sync last checkpoint, so it cannot yet tell a
    /// subtree the fast path skipped from one the chain has not reached.
    ///
    /// This is not a promise of recovery. Deciding between the two needs the pool's leaf count
    /// at the last checkpoint, which only exists once sync gets there; every subtree that completed
    /// below the last checkpoint is skipped, and turns into [`Self::NotStored`] rather than appearing.
    #[error(
        "this node has not reached the last checkpoint, so it cannot yet tell whether the \
         subtree was skipped; subtrees completed below the last checkpoint are never recorded"
    )]
    Indeterminate,

    /// The node has passed the last checkpoint without recording the requested subtree.
    #[error(
        "this node did not record the subtree and continuing synchronization will not restore it; \
         use another node"
    )]
    NotStored,
}

/// An error describing why opening the finalized state database failed.
///
/// These errors are recoverable open-time failures that the caller can report,
/// as opposed to invariant violations that indicate a bug.
#[derive(Debug, Error)]
#[non_exhaustive]
pub enum StateInitError {
    /// A read-only state was requested, but the configured cache directory is
    /// missing or unreadable.
    ///
    /// A read-only secondary instance must never create the primary's cache
    /// directory, so a missing or unreadable directory is a fatal configuration
    /// error rather than something to be created.
    #[error(
        "cannot open read-only state: cache directory {path:?} is missing or unreadable. \
         Hint: a read-only state requires an existing Zakura cache directory; check that the \
         state cache_dir in the Zakura config points at a running Zakura node's cache directory"
    )]
    ReadOnlyCacheDirUnreadable {
        /// The configured cache directory that could not be read.
        path: PathBuf,
        /// The underlying I/O error returned while reading the directory.
        source: std::io::Error,
    },

    /// A read-only state was requested, but no database exists at the expected
    /// path.
    ///
    /// A read-only secondary instance cannot create a database, so the absence
    /// of an existing database is a fatal configuration error.
    #[error(
        "cannot open read-only state: no database found at {path:?}. \
         Hint: a read-only state requires an existing finalized database created by a running \
         Zakura node; check that the state cache_dir in the Zakura config points at that node's \
         cache directory"
    )]
    ReadOnlyDatabaseNotFound {
        /// The database path at which no database was found.
        path: PathBuf,
    },

    /// A read-only state was requested together with an ephemeral database.
    ///
    /// A read-only secondary follows another process's primary database and must
    /// never delete it, whereas an ephemeral database deletes its files on drop. The
    /// two are mutually exclusive, so requesting both is a fatal configuration error.
    #[error(
        "cannot open read-only state: an ephemeral database was also requested. \
         Hint: a read-only state follows an existing Zakura node's database and must not \
         delete it; set `ephemeral = false`, or do not request a read-only state"
    )]
    ReadOnlyEphemeralConflict,

    /// A Mainnet database written by the original VCT fast path is missing historical Sprout
    /// anchors, and the in-place repair for it no longer exists.
    #[error(
        "cannot open state: this database was written by an early verified-commitment-trees fast \
         sync and is missing historical Sprout anchors, so it cannot verify JoinSplits that spend \
         a historical Sprout anchor. \
         Hint: discard the database and resync, or restore a snapshot taken with a current release"
    )]
    VctSproutHistoryUnrepairable,
}

/// An error describing why a block could not be queued to be committed to the state.
#[derive(Debug, Error, Clone, PartialEq, Eq, new)]
pub enum CommitBlockError {
    #[error("block hash is a duplicate: already in {location}")]
    /// The block is a duplicate: it is already queued or committed in the state.
    Duplicate {
        /// Hash or height of the duplicated block.
        hash_or_height: Option<HashOrHeight>,
        /// Location in the state where the block can be found.
        location: KnownBlock,
    },

    /// Contextual validation failed.
    #[error("could not contextually validate semantically verified block")]
    ValidateContextError(#[from] Box<ValidateContextError>),

    /// Header-only commit validation failed.
    #[error("could not commit header range")]
    HeaderCommitError(#[from] Box<CommitHeaderRangeError>),

    /// The write task exited (likely during shutdown).
    #[error("block commit task exited. Is Zakura shutting down?")]
    #[non_exhaustive]
    WriteTaskExited,
}

impl CommitBlockError {
    /// Returns `true` if this is definitely a duplicate commit request.
    /// Some duplicate requests might not be detected, and therefore return `false`.
    pub fn is_duplicate_request(&self) -> bool {
        matches!(self, CommitBlockError::Duplicate { .. })
    }

    /// Returns the state location for duplicate commit requests.
    pub fn duplicate_location(&self) -> Option<&KnownBlock> {
        match self {
            CommitBlockError::Duplicate { location, .. } => Some(location),
            _ => None,
        }
    }

    /// Returns the missing VCT supplied-root height for retryable root-fetch stalls.
    pub fn vct_supplied_root_unavailable_height(&self) -> Option<block::Height> {
        match self {
            CommitBlockError::ValidateContextError(error) => {
                error.vct_supplied_root_unavailable_height()
            }
            _ => None,
        }
    }

    /// Returns the height for any retryable VCT root stall (absent or rejected root, or one
    /// not yet verifiable for lack of a stored successor header). See
    /// [`ValidateContextError::vct_retryable_height`].
    pub fn vct_retryable_height(&self) -> Option<block::Height> {
        match self {
            CommitBlockError::ValidateContextError(error) => error.vct_retryable_height(),
            _ => None,
        }
    }

    /// Returns a suggested misbehaviour score increment for a certain error.
    ///
    /// Callers must only apply this score when the failure is attributable to
    /// the peer supplying a fully verified block. Checkpoint commit failures
    /// can depend on auxiliary roots from another peer and must remain
    /// unscored by checkpoint verification.
    pub fn misbehavior_score(&self) -> u32 {
        match self {
            CommitBlockError::ValidateContextError(error) => error.misbehavior_score(),
            _ => 0,
        }
    }
}

impl From<CommitHeaderRangeError> for CommitBlockError {
    fn from(value: CommitHeaderRangeError) -> Self {
        Self::HeaderCommitError(Box::new(value))
    }
}

/// An error describing why a `CommitSemanticallyVerified` request failed.
#[derive(Debug, Error, Clone, PartialEq, Eq)]
#[error("could not commit semantically-verified block")]
pub struct CommitSemanticallyVerifiedError(#[from] CommitBlockError);

impl CommitSemanticallyVerifiedError {
    /// Returns the [`CommitBlockError`] describing why the commit failed.
    pub fn inner(&self) -> &CommitBlockError {
        &self.0
    }

    /// Returns the state location for duplicate commit requests.
    pub fn duplicate_location(&self) -> Option<&KnownBlock> {
        self.0.duplicate_location()
    }
}

impl From<ValidateContextError> for CommitSemanticallyVerifiedError {
    fn from(value: ValidateContextError) -> Self {
        Self(CommitBlockError::ValidateContextError(Box::new(value)))
    }
}

impl From<CommitHeaderRangeError> for CommitSemanticallyVerifiedError {
    fn from(value: CommitHeaderRangeError) -> Self {
        Self(CommitBlockError::HeaderCommitError(Box::new(value)))
    }
}

#[derive(Debug, Error)]
pub enum LayeredStateError<E: std::error::Error + std::fmt::Display> {
    #[error("{0}")]
    State(E),
    #[error("{0}")]
    Layer(BoxError),
}

impl<E: std::error::Error + 'static> From<BoxError> for LayeredStateError<E> {
    fn from(err: BoxError) -> Self {
        match err.downcast::<E>() {
            Ok(state_err) => Self::State(*state_err),
            Err(layer_error) => Self::Layer(layer_error),
        }
    }
}

/// An error describing why a `CommitCheckpointVerifiedBlock` request failed.
#[derive(Debug, Error, Clone)]
#[error("could not commit checkpoint-verified block")]
pub struct CommitCheckpointVerifiedError(#[from] CommitBlockError);

impl CommitCheckpointVerifiedError {
    /// Returns the [`CommitBlockError`] describing why the commit failed.
    pub fn inner(&self) -> &CommitBlockError {
        &self.0
    }

    /// Returns the state location for duplicate commit requests.
    pub fn duplicate_location(&self) -> Option<&KnownBlock> {
        self.0.duplicate_location()
    }

    /// Returns the missing VCT supplied-root height for retryable root-fetch stalls.
    pub fn vct_supplied_root_unavailable_height(&self) -> Option<block::Height> {
        self.0.vct_supplied_root_unavailable_height()
    }

    /// Returns the height for any retryable VCT root stall (absent or rejected root, or one
    /// not yet verifiable for lack of a stored successor header). See
    /// [`ValidateContextError::vct_retryable_height`].
    pub fn vct_retryable_height(&self) -> Option<block::Height> {
        self.0.vct_retryable_height()
    }
}

impl From<ValidateContextError> for CommitCheckpointVerifiedError {
    fn from(value: ValidateContextError) -> Self {
        Self(CommitBlockError::ValidateContextError(Box::new(value)))
    }
}

impl From<CommitHeaderRangeError> for CommitCheckpointVerifiedError {
    fn from(value: CommitHeaderRangeError) -> Self {
        Self(CommitBlockError::HeaderCommitError(Box::new(value)))
    }
}

/// An internal invariant of the zakura header store was found violated while
/// reading it.
///
/// This is a **local storage fault**, never evidence about a peer: readers
/// return it instead of feeding rows from more than one branch (or from beside
/// a gap) into consensus validation, where the corruption would otherwise
/// surface as a misleading validation failure (`InvalidDifficultyThreshold`,
/// `UnknownAnchor`) attributed to whoever supplied the input being validated.
#[derive(Debug, Error, Clone, Copy, PartialEq, Eq)]
#[non_exhaustive]
pub enum StoreIncoherentError {
    /// The header row at `height` does not link to the stored row below it.
    #[error(
        "header store incoherent: header at {height:?} links to {expected_parent} but the stored row below is {actual_below}"
    )]
    BrokenLinkage {
        /// Height of the header whose parent link failed to resolve.
        height: block::Height,
        /// The parent hash the header claims (`previous_block_hash`).
        expected_parent: block::Hash,
        /// The hash actually stored at `height - 1`.
        actual_below: block::Hash,
    },

    /// A header row exists at `height` but the row below it is missing.
    #[error(
        "header store incoherent: no stored row at {missing:?} below the header at {height:?}"
    )]
    Gap {
        /// Height of the stored header above the gap.
        height: block::Height,
        /// The missing height (`height - 1`).
        missing: block::Height,
    },

    /// The header row at `height` is not the block its hash row names.
    #[error(
        "header store incoherent: header stored at {height:?} hashes to {computed} but the hash row names {indexed}"
    )]
    HeaderHashMismatch {
        /// Height of the divergent rows.
        height: block::Height,
        /// The hash the height→hash index names.
        indexed: block::Hash,
        /// The stored header's actual hash.
        computed: block::Hash,
    },

    /// The hash→height and height→hash indexes disagree about a hash.
    #[error(
        "header store incoherent: hash {hash} is indexed at {height:?} but that height stores {stored:?}"
    )]
    BijectionMismatch {
        /// The hash whose round-trip failed.
        hash: block::Hash,
        /// The height the hash→height index reports for it.
        height: block::Height,
        /// What the height→hash index stores there instead.
        stored: Option<block::Hash>,
    },
}

/// An error describing why a header-only range could not be committed.
#[derive(Debug, Error, Clone, PartialEq, Eq)]
#[non_exhaustive]
pub enum CommitHeaderRangeError {
    /// The request did not contain any headers.
    #[error("header range is empty")]
    EmptyRange,

    /// The request exceeded the native header-sync range cap.
    #[error(
        "header range contains {actual} headers, exceeding the maximum {MAX_HEADER_SYNC_HEIGHT_RANGE}"
    )]
    RangeTooLong {
        /// Number of headers in the request.
        actual: usize,
    },

    /// The request supplied a different number of body-size hints than headers.
    #[error("header range body-size count {body_sizes} does not match header count {headers}")]
    BodySizeCountMismatch {
        /// Header count.
        headers: usize,
        /// Body-size hint count.
        body_sizes: usize,
    },

    /// The request supplied a different number of roots than headers.
    #[error("header range tree-aux root count {roots} does not match header count {headers}")]
    TreeAuxRootCountMismatch {
        /// Header count.
        headers: usize,
        /// Tree-aux root count.
        roots: usize,
    },

    /// A supplied tree-aux root did not match the inferred header height.
    #[error("header range tree-aux root height {root_height:?} does not match expected height {expected_height:?}")]
    TreeAuxRootHeightMismatch {
        /// Expected root height.
        expected_height: block::Height,
        /// Actual root height.
        root_height: block::Height,
    },

    /// The supplied anchor is not known to state.
    #[error("header range anchor {anchor} is not known")]
    UnknownAnchor {
        /// The supplied anchor hash.
        anchor: block::Hash,
    },

    /// The supplied anchor is the network genesis hash, but the genesis block has not been
    /// committed to state yet.
    #[error("header range genesis anchor {anchor} is not committed to state yet")]
    MissingGenesisAnchor {
        /// The supplied genesis anchor hash.
        anchor: block::Hash,
    },

    /// The inferred header height overflowed the valid block height range.
    #[error("header height overflow")]
    HeightOverflow,

    /// A header in the range does not link to the anchor or to its predecessor,
    /// so committing it would break the header store's linkage invariant.
    #[error(
        "header at {height:?} links to {actual_parent} instead of its predecessor {expected_parent}"
    )]
    UnlinkedRange {
        /// Height of the first header that fails to link.
        height: block::Height,
        /// The hash of the row the header must link to (the anchor, or the
        /// previous header in the range).
        expected_parent: block::Hash,
        /// The header's actual `previous_block_hash`.
        actual_parent: block::Hash,
    },

    /// A committed immutable header conflicts with the requested header.
    #[error("header at finalized height {height:?} conflicts with an existing header")]
    ImmutableConflict {
        /// The conflicting height.
        height: block::Height,
    },

    /// Local checkpoint-frontier reconstruction failed while preparing the range.
    #[error("could not update the highest completed checkpoint: {0}")]
    HighestCompletedCheckpoint(
        #[from] crate::service::finalized_state::HighestCompletedCheckpointError,
    ),

    /// A provisional reorg tried to overwrite too far behind the best header tip.
    #[error(
        "header reorg at {height:?} is deeper than the maximum reorg window from best header tip {best_header_tip:?}"
    )]
    ReorgTooDeep {
        /// Height of the conflicting header.
        height: block::Height,
        /// Current best header tip.
        best_header_tip: block::Height,
    },

    /// A conflicting header range carried no more cumulative work than the existing
    /// header chain it would replace, so it was rejected to keep the most-work chain.
    #[error(
        "conflicting header range at {height:?} has cumulative work {new_work} <= existing work {existing_work}"
    )]
    LowerWorkConflict {
        /// Height where the new range first conflicts with the stored chain.
        height: block::Height,
        /// Cumulative work of the existing conflicting suffix.
        existing_work: u128,
        /// Cumulative work of the new conflicting suffix.
        new_work: u128,
    },

    /// A header conflicts with a trusted checkpoint hash.
    #[error("checkpoint conflict at {height:?}: expected {expected}, got {actual}")]
    CheckpointConflict {
        /// Checkpoint height.
        height: block::Height,
        /// Expected checkpoint hash.
        expected: block::Hash,
        /// Actual header hash.
        actual: block::Hash,
    },

    /// The requested header conflicts with a full block already stored at the same height.
    #[error("header at height {height:?} conflicts with an already stored full block")]
    ConflictingFullBlockHeader {
        /// The conflicting height.
        height: block::Height,
    },

    /// The local header store was found internally incoherent while reading
    /// the context needed to validate the range.
    ///
    /// This is a local storage fault, not a peer validation failure: the range
    /// was rejected because the store cannot supply trustworthy context, not
    /// because the range itself was shown invalid.
    #[error("header store incoherent while validating range: {0}")]
    StoreIncoherent(#[from] StoreIncoherentError),

    /// The durable authenticated-root frontier could not be safely rebased.
    #[error("header-root authentication frontier is incoherent: {reason}")]
    HeaderRootAuthFrontier {
        /// The local frontier coherence failure.
        reason: String,
    },

    /// Contextual header validation failed.
    #[error("could not contextually validate header")]
    ValidateContextError(#[from] Box<ValidateContextError>),

    /// Local storage failed while writing a validated header range.
    ///
    /// This is a local resource/storage failure, not a peer validation failure.
    #[error("failed to write validated header range to disk: {error}")]
    StorageWriteError {
        /// RocksDB error details.
        error: String,
    },

    /// Sending the commit request to the write task failed.
    #[error("failed to send header range commit request to block write task")]
    SendCommitRequestFailed,

    /// The commit request was dropped before processing.
    #[error("header range commit request was unexpectedly dropped")]
    CommitResponseDropped,
}

impl From<ValidateContextError> for CommitHeaderRangeError {
    fn from(value: ValidateContextError) -> Self {
        Self::ValidateContextError(Box::new(value))
    }
}

/// An error describing why a `InvalidateBlock` request failed.
#[derive(Debug, Error)]
#[non_exhaustive]
pub enum InvalidateError {
    /// The state is currently checkpointing blocks and cannot accept invalidation requests.
    #[error("cannot invalidate blocks while still committing checkpointed blocks")]
    ProcessingCheckpointedBlocks,

    /// Sending the invalidate request to the block write task failed.
    #[error("failed to send invalidate block request to block write task")]
    SendInvalidateRequestFailed,

    /// The invalidate request was dropped before processing.
    #[error("invalidate block request was unexpectedly dropped")]
    InvalidateRequestDropped,

    /// The block hash was not found in any non-finalized chain.
    #[error("block hash {0} not found in any non-finalized chain")]
    BlockNotFound(block::Hash),
}

/// An error describing why a `ReconsiderBlock` request failed.
#[derive(Debug, Error)]
#[non_exhaustive]
pub enum ReconsiderError {
    /// The block is not found in the list of invalidated blocks.
    #[error("Block with hash {0} was not previously invalidated")]
    MissingInvalidatedBlock(block::Hash),

    /// The block's parent is missing from the non-finalized state.
    #[error("Parent chain not found for block {0}")]
    ParentChainNotFound(block::Hash),

    /// There were no invalidated blocks when at least one was expected.
    #[error("Invalidated blocks list is empty when it should contain at least one block")]
    InvalidatedBlocksEmpty,

    /// The state is currently checkpointing blocks and cannot accept reconsider requests.
    #[error("cannot reconsider blocks while still committing checkpointed blocks")]
    CheckpointCommitInProgress,

    /// Sending the reconsider request to the block write task failed.
    #[error("failed to send reconsider block request to block write task")]
    ReconsiderSendFailed,

    /// The reconsider request was dropped before processing.
    #[error("reconsider block request was unexpectedly dropped")]
    ReconsiderResponseDropped,

    /// Replaying an invalidated block into the restored chain failed contextual
    /// validation.
    #[error("replaying a previously invalidated block failed contextual validation: {0}")]
    ReplayFailed(#[source] ValidateContextError),

    /// The finalized parent chain is missing its Sprout tip frontier.
    #[error(transparent)]
    MissingSproutTipTree(#[from] MissingSproutTipTree),
}

/// An error describing why a block failed contextual validation.
#[derive(Debug, Error, Clone, PartialEq, Eq)]
#[non_exhaustive]
#[allow(missing_docs)]
pub enum ValidateContextError {
    #[error(transparent)]
    MissingSproutTipTree(#[from] MissingSproutTipTree),

    #[error("header-root authentication frontier is incoherent: {reason}")]
    HeaderRootAuthFrontier { reason: String },

    #[error("block hash {block_hash} was previously invalidated")]
    #[non_exhaustive]
    BlockPreviouslyInvalidated { block_hash: block::Hash },

    #[error("block parent not found in any chain, or not enough blocks in chain")]
    #[non_exhaustive]
    NotReadyToBeCommitted,

    #[error("block descends from invalid ancestor {0}")]
    InvalidAncestorBlock(block::Hash),

    #[error(
        "verified-commitment-trees fast path has no valid supplied root for height \
         {height:?}: the note-commitment frontier is frozen, so this block cannot be \
         committed until a verifiable root is fetched from a peer (retryable)"
    )]
    #[non_exhaustive]
    VctSuppliedRootUnavailable { height: block::Height },

    #[error(
        "verified-commitment-trees fast path cannot yet verify the supplied root for height \
         {height:?}: no successor header is stored to confirm it against the header chain, and \
         committing it unverified would persist a root that is only checked one block later \
         (irreversibly, once on disk). Commit is deferred until the successor header arrives (retryable)"
    )]
    #[non_exhaustive]
    VctSuppliedRootAwaitingSuccessor { height: block::Height },

    #[error(
        "checkpoint block at {height:?} has authorizing-data root {actual:?}, but its cached \
         header prevalidation requires {expected:?}"
    )]
    #[non_exhaustive]
    VctBlockAuthDataRootMismatch {
        height: block::Height,
        expected: block::merkle::AuthDataRoot,
        actual: block::merkle::AuthDataRoot,
    },

    #[error(
        "locally reconstructed Sprout root at the VCT handoff height {height:?} is \
         {actual:?}, but the embedded handoff frontier requires {expected:?}"
    )]
    #[non_exhaustive]
    VctSproutHandoffRootMismatch {
        height: block::Height,
        expected: sprout::tree::Root,
        actual: sprout::tree::Root,
    },

    #[error("block height {candidate_height:?} is lower than the current finalized height {finalized_tip_height:?}")]
    #[non_exhaustive]
    OrphanedBlock {
        candidate_height: block::Height,
        finalized_tip_height: block::Height,
    },

    #[error("block height {candidate_height:?} is not one greater than its parent block's height {parent_height:?}")]
    #[non_exhaustive]
    NonSequentialBlock {
        candidate_height: block::Height,
        parent_height: block::Height,
    },

    #[error("block time {candidate_time:?} is less than or equal to the median-time-past for the block {median_time_past:?}")]
    #[non_exhaustive]
    TimeTooEarly {
        candidate_time: DateTime<Utc>,
        median_time_past: DateTime<Utc>,
    },

    #[error("block time {candidate_time:?} is greater than the median-time-past for the block plus 90 minutes {block_time_max:?}")]
    #[non_exhaustive]
    TimeTooLate {
        candidate_time: DateTime<Utc>,
        block_time_max: DateTime<Utc>,
    },

    #[error("block difficulty threshold {difficulty_threshold:?} is not equal to the expected difficulty for the block {expected_difficulty:?}")]
    #[non_exhaustive]
    InvalidDifficultyThreshold {
        difficulty_threshold: CompactDifficulty,
        expected_difficulty: CompactDifficulty,
    },

    #[error("transparent double-spend: {outpoint:?} is spent twice in {location:?}")]
    #[non_exhaustive]
    DuplicateTransparentSpend {
        outpoint: transparent::OutPoint,
        location: &'static str,
    },

    #[error("missing transparent output: possible double-spend of {outpoint:?} in {location:?}")]
    #[non_exhaustive]
    MissingTransparentOutput {
        outpoint: transparent::OutPoint,
        location: &'static str,
    },

    #[error("out-of-order transparent spend: {outpoint:?} is created by a later transaction in the same block")]
    #[non_exhaustive]
    EarlyTransparentSpend { outpoint: transparent::OutPoint },

    #[error(
        "unshielded transparent coinbase spend: {outpoint:?} \
         must be spent in a transaction which only has shielded outputs"
    )]
    #[non_exhaustive]
    UnshieldedTransparentCoinbaseSpend { outpoint: transparent::OutPoint },

    #[error(
        "immature transparent coinbase spend: \
        attempt to spend {outpoint:?} at {spend_height:?}, \
        but spends are invalid before {min_spend_height:?}, \
        which is {MIN_TRANSPARENT_COINBASE_MATURITY:?} blocks \
        after it was created at {created_height:?}"
    )]
    #[non_exhaustive]
    ImmatureTransparentCoinbaseSpend {
        outpoint: transparent::OutPoint,
        spend_height: block::Height,
        min_spend_height: block::Height,
        created_height: block::Height,
    },

    #[error("sprout double-spend: duplicate nullifier: {nullifier:?}, in finalized state: {in_finalized_state:?}")]
    #[non_exhaustive]
    DuplicateSproutNullifier {
        nullifier: sprout::Nullifier,
        in_finalized_state: bool,
    },

    #[error("sapling double-spend: duplicate nullifier: {nullifier:?}, in finalized state: {in_finalized_state:?}")]
    #[non_exhaustive]
    DuplicateSaplingNullifier {
        nullifier: sapling::Nullifier,
        in_finalized_state: bool,
    },

    #[error("orchard double-spend: duplicate nullifier: {nullifier:?}, in finalized state: {in_finalized_state:?}")]
    #[non_exhaustive]
    DuplicateOrchardNullifier {
        nullifier: orchard::Nullifier,
        in_finalized_state: bool,
    },

    #[error("ironwood double-spend: duplicate nullifier: {nullifier:?}, in finalized state: {in_finalized_state:?}")]
    #[non_exhaustive]
    DuplicateIronwoodNullifier {
        nullifier: ironwood::Nullifier,
        in_finalized_state: bool,
    },

    #[error(
        "the remaining value in the transparent transaction value pool MUST be nonnegative:\n\
         {amount_error:?},\n\
         {height:?}, index in block: {tx_index_in_block:?}, {transaction_hash:?}"
    )]
    #[non_exhaustive]
    NegativeRemainingTransactionValue {
        amount_error: amount::Error,
        height: block::Height,
        tx_index_in_block: usize,
        transaction_hash: transaction::Hash,
    },

    #[error(
        "error calculating the remaining value in the transaction value pool:\n\
         {amount_error:?},\n\
         {height:?}, index in block: {tx_index_in_block:?}, {transaction_hash:?}"
    )]
    #[non_exhaustive]
    CalculateRemainingTransactionValue {
        amount_error: amount::Error,
        height: block::Height,
        tx_index_in_block: usize,
        transaction_hash: transaction::Hash,
    },

    #[error(
        "error calculating value balances for the remaining value in the transaction value pool:\n\
         {value_balance_error:?},\n\
         {height:?}, index in block: {tx_index_in_block:?}, {transaction_hash:?}"
    )]
    #[non_exhaustive]
    CalculateTransactionValueBalances {
        value_balance_error: ValueBalanceError,
        height: block::Height,
        tx_index_in_block: usize,
        transaction_hash: transaction::Hash,
    },

    #[error(
        "error calculating the block chain value pool change:\n\
         {value_balance_error:?},\n\
         {height:?}, {block_hash:?},\n\
         transactions: {transaction_count:?}, spent UTXOs: {spent_utxo_count:?}"
    )]
    #[non_exhaustive]
    CalculateBlockChainValueChange {
        value_balance_error: ValueBalanceError,
        height: block::Height,
        block_hash: block::Hash,
        transaction_count: usize,
        spent_utxo_count: usize,
    },

    #[error(
        "error adding value balances to the chain value pool:\n\
         {value_balance_error:?},\n\
         {chain_value_pools:?},\n\
         {block_value_pool_change:?},\n\
         {height:?}"
    )]
    #[non_exhaustive]
    AddValuePool {
        value_balance_error: ValueBalanceError,
        chain_value_pools: Box<ValueBalance<NonNegative>>,
        block_value_pool_change: Box<ValueBalance<NegativeAllowed>>,
        height: Option<block::Height>,
    },

    #[error("error updating a note commitment tree: {0}")]
    NoteCommitmentTreeError(#[from] zakura_chain::parallel::tree::NoteCommitmentTreeError),

    #[error("error building the history tree: {0}")]
    HistoryTreeError(#[from] Arc<HistoryTreeError>),

    #[error("block contains an invalid commitment: {0}")]
    InvalidBlockCommitment(#[from] block::CommitmentError),

    #[error(
        "unknown Sprout anchor: {anchor:?},\n\
         {height:?}, index in block: {tx_index_in_block:?}, {transaction_hash:?}"
    )]
    #[non_exhaustive]
    UnknownSproutAnchor {
        anchor: sprout::tree::Root,
        height: Option<block::Height>,
        tx_index_in_block: Option<usize>,
        transaction_hash: transaction::Hash,
    },

    #[error(
        "unknown Sapling anchor: {anchor:?},\n\
         {height:?}, index in block: {tx_index_in_block:?}, {transaction_hash:?}"
    )]
    #[non_exhaustive]
    UnknownSaplingAnchor {
        anchor: sapling::tree::Root,
        height: Option<block::Height>,
        tx_index_in_block: Option<usize>,
        transaction_hash: transaction::Hash,
    },

    #[error(
        "unknown Orchard anchor: {anchor:?},\n\
         {height:?}, index in block: {tx_index_in_block:?}, {transaction_hash:?}"
    )]
    #[non_exhaustive]
    UnknownOrchardAnchor {
        anchor: orchard::tree::Root,
        height: Option<block::Height>,
        tx_index_in_block: Option<usize>,
        transaction_hash: transaction::Hash,
    },

    #[error(
        "unknown Ironwood anchor: {anchor:?},\n\
         {height:?}, index in block: {tx_index_in_block:?}, {transaction_hash:?}"
    )]
    #[non_exhaustive]
    UnknownIronwoodAnchor {
        anchor: ironwood::tree::Root,
        height: Option<block::Height>,
        tx_index_in_block: Option<usize>,
        transaction_hash: transaction::Hash,
    },
}

impl ValidateContextError {
    // Keep this match exhaustive so new contextual errors must make an explicit
    // peer-attribution decision.
    fn misbehavior_score(&self) -> u32 {
        match self {
            // Consensus violations the block itself proves: the supplier sent a
            // block that no honest peer could have produced.
            ValidateContextError::NonSequentialBlock { .. }
            | ValidateContextError::TimeTooEarly { .. }
            | ValidateContextError::TimeTooLate { .. }
            | ValidateContextError::InvalidDifficultyThreshold { .. }
            | ValidateContextError::DuplicateTransparentSpend { .. }
            | ValidateContextError::MissingTransparentOutput { .. }
            | ValidateContextError::EarlyTransparentSpend { .. }
            | ValidateContextError::UnshieldedTransparentCoinbaseSpend { .. }
            | ValidateContextError::ImmatureTransparentCoinbaseSpend { .. }
            | ValidateContextError::DuplicateSproutNullifier { .. }
            | ValidateContextError::DuplicateSaplingNullifier { .. }
            | ValidateContextError::DuplicateOrchardNullifier { .. }
            | ValidateContextError::DuplicateIronwoodNullifier { .. }
            | ValidateContextError::NegativeRemainingTransactionValue { .. }
            | ValidateContextError::AddValuePool { .. }
            | ValidateContextError::InvalidBlockCommitment(_)
            | ValidateContextError::UnknownSproutAnchor { .. }
            | ValidateContextError::UnknownSaplingAnchor { .. }
            | ValidateContextError::UnknownOrchardAnchor { .. }
            | ValidateContextError::UnknownIronwoodAnchor { .. } => 100,

            // Residual arithmetic failures in our own value summation, not
            // consensus violations. `remaining_transaction_value()` and
            // `value_balance()` peel off the "this block creates money" case
            // into `NegativeRemainingTransactionValue`, and `AddValuePool`
            // carries the ZIP-209 non-negative pool rule. What reaches these
            // variants is an out-of-range or overflowing intermediate, which a
            // local bookkeeping bug can produce just as easily as a bad block.
            // Scoring them would let one such bug ban every honest peer in turn,
            // so they stay unscored alongside the other local-state failures.
            ValidateContextError::CalculateRemainingTransactionValue { .. }
            | ValidateContextError::CalculateTransactionValueBalances { .. }
            | ValidateContextError::CalculateBlockChainValueChange { .. }

            // Failures that are not attributable to the block's supplier:
            // local state and tree errors, operator invalidation, stale forks,
            // out-of-order arrival, retryable stalls, and auxiliary roots that
            // may have come from a different peer.
            | ValidateContextError::MissingSproutTipTree(_)
            | ValidateContextError::HeaderRootAuthFrontier { .. }
            | ValidateContextError::BlockPreviouslyInvalidated { .. }
            | ValidateContextError::NotReadyToBeCommitted
            | ValidateContextError::InvalidAncestorBlock(_)
            | ValidateContextError::VctSuppliedRootUnavailable { .. }
            | ValidateContextError::VctSuppliedRootAwaitingSuccessor { .. }
            | ValidateContextError::VctBlockAuthDataRootMismatch { .. }
            | ValidateContextError::VctSproutHandoffRootMismatch { .. }
            | ValidateContextError::OrphanedBlock { .. }
            | ValidateContextError::NoteCommitmentTreeError(_)
            | ValidateContextError::HistoryTreeError(_) => 0,
        }
    }

    /// Returns the missing VCT supplied-root height for retryable root stalls.
    ///
    /// This is the subset of [`Self::vct_retryable_height`] where the supplied root itself is
    /// unusable: authentication has not stored a row for it yet, or the stored row failed
    /// body-time verification and the commit refuses to use it. The stall clears when the
    /// root-authentication lane (or its bounded repair path) stores a verifiable row. An
    /// await-successor stall ([`Self::vct_retryable_height`] but not this) already has its root
    /// and only waits for the next header to be stored.
    pub fn vct_supplied_root_unavailable_height(&self) -> Option<block::Height> {
        match self {
            ValidateContextError::VctSuppliedRootUnavailable { height } => Some(*height),
            _ => None,
        }
    }

    /// Returns the height for any retryable VCT root stall: either an absent or rejected supplied
    /// root ([`Self::VctSuppliedRootUnavailable`]) or one not yet verifiable because no successor
    /// is buffered to confirm it ([`Self::VctSuppliedRootAwaitingSuccessor`]). The write loop
    /// parks and retries the same block for both; the former polls slower because nothing is
    /// actively fetching a replacement root.
    pub fn vct_retryable_height(&self) -> Option<block::Height> {
        match self {
            ValidateContextError::VctSuppliedRootUnavailable { height }
            | ValidateContextError::VctSuppliedRootAwaitingSuccessor { height } => Some(*height),
            _ => None,
        }
    }
}

impl From<sprout::tree::NoteCommitmentTreeError> for ValidateContextError {
    fn from(value: sprout::tree::NoteCommitmentTreeError) -> Self {
        ValidateContextError::NoteCommitmentTreeError(value.into())
    }
}

/// Trait for creating the corresponding duplicate nullifier error from a nullifier.
pub trait DuplicateNullifierError {
    /// Returns the corresponding duplicate nullifier error for `self`.
    fn duplicate_nullifier_error(&self, in_finalized_state: bool) -> ValidateContextError;
}

impl DuplicateNullifierError for sprout::Nullifier {
    fn duplicate_nullifier_error(&self, in_finalized_state: bool) -> ValidateContextError {
        ValidateContextError::DuplicateSproutNullifier {
            nullifier: *self,
            in_finalized_state,
        }
    }
}

impl DuplicateNullifierError for sapling::Nullifier {
    fn duplicate_nullifier_error(&self, in_finalized_state: bool) -> ValidateContextError {
        ValidateContextError::DuplicateSaplingNullifier {
            nullifier: *self,
            in_finalized_state,
        }
    }
}

impl DuplicateNullifierError for orchard::Nullifier {
    fn duplicate_nullifier_error(&self, in_finalized_state: bool) -> ValidateContextError {
        ValidateContextError::DuplicateOrchardNullifier {
            nullifier: *self,
            in_finalized_state,
        }
    }
}

#[cfg(test)]
mod tests {
    use super::*;
    use zakura_chain::{
        block::{CommitmentError, Height},
        parameters::Network,
        work::difficulty::{ParameterDifficulty, INVALID_COMPACT_DIFFICULTY},
    };

    #[test]
    fn commit_block_error_misbehavior_scores() {
        let block_time = DateTime::from_timestamp(1_000_000, 0)
            .expect("test timestamp is in the supported range");
        let height = Height(5);
        let transaction_hash = transaction::Hash([2; 32]);
        let outpoint = transparent::OutPoint {
            hash: transaction_hash,
            index: 0,
        };
        let amount_error = amount::Error::Constraint {
            value: -1,
            range: 0..=1,
        };
        let value_balance_error = ValueBalanceError::Transparent(amount_error.clone());
        let orchard_nullifier = orchard::Nullifier::try_from([0; 32])
            .expect("zero is a canonical Orchard nullifier encoding");
        // Residual arithmetic failures in our own value summation. A local
        // bookkeeping bug produces these just as easily as a bad block does, so
        // they must not ban the peer that supplied the block.
        let arithmetic_faults = [
            ValidateContextError::CalculateRemainingTransactionValue {
                amount_error: amount_error.clone(),
                height,
                tx_index_in_block: 1,
                transaction_hash,
            },
            ValidateContextError::CalculateTransactionValueBalances {
                value_balance_error: value_balance_error.clone(),
                height,
                tx_index_in_block: 1,
                transaction_hash,
            },
            ValidateContextError::CalculateBlockChainValueChange {
                value_balance_error: value_balance_error.clone(),
                height,
                block_hash: block::Hash([3; 32]),
                transaction_count: 2,
                spent_utxo_count: 1,
            },
        ];

        let peer_faults = [
            ValidateContextError::NonSequentialBlock {
                candidate_height: height,
                parent_height: Height(3),
            },
            ValidateContextError::TimeTooEarly {
                candidate_time: block_time,
                median_time_past: block_time,
            },
            ValidateContextError::TimeTooLate {
                candidate_time: block_time,
                block_time_max: block_time,
            },
            ValidateContextError::InvalidDifficultyThreshold {
                difficulty_threshold: INVALID_COMPACT_DIFFICULTY,
                expected_difficulty: Network::Mainnet.target_difficulty_limit().to_compact(),
            },
            ValidateContextError::DuplicateTransparentSpend {
                outpoint,
                location: "test chain",
            },
            ValidateContextError::MissingTransparentOutput {
                outpoint,
                location: "test chain",
            },
            ValidateContextError::EarlyTransparentSpend { outpoint },
            ValidateContextError::UnshieldedTransparentCoinbaseSpend { outpoint },
            ValidateContextError::ImmatureTransparentCoinbaseSpend {
                outpoint,
                spend_height: height,
                min_spend_height: Height(100),
                created_height: Height(1),
            },
            ValidateContextError::DuplicateSproutNullifier {
                nullifier: sprout::Nullifier::from([0; 32]),
                in_finalized_state: false,
            },
            ValidateContextError::DuplicateSaplingNullifier {
                nullifier: sapling::Nullifier::from([0; 32]),
                in_finalized_state: false,
            },
            ValidateContextError::DuplicateOrchardNullifier {
                nullifier: orchard_nullifier,
                in_finalized_state: false,
            },
            ValidateContextError::DuplicateIronwoodNullifier {
                nullifier: orchard_nullifier,
                in_finalized_state: false,
            },
            ValidateContextError::NegativeRemainingTransactionValue {
                amount_error: amount_error.clone(),
                height,
                tx_index_in_block: 1,
                transaction_hash,
            },
            ValidateContextError::AddValuePool {
                value_balance_error,
                chain_value_pools: Box::new(ValueBalance::<NonNegative>::zero()),
                block_value_pool_change: Box::new(ValueBalance::<NegativeAllowed>::zero()),
                height: Some(height),
            },
            ValidateContextError::InvalidBlockCommitment(
                CommitmentError::InvalidChainHistoryActivationReserved { actual: [1; 32] },
            ),
            ValidateContextError::UnknownSproutAnchor {
                anchor: sprout::tree::Root::default(),
                height: Some(height),
                tx_index_in_block: Some(1),
                transaction_hash,
            },
            ValidateContextError::UnknownSaplingAnchor {
                anchor: sapling::tree::Root::default(),
                height: Some(height),
                tx_index_in_block: Some(1),
                transaction_hash,
            },
            ValidateContextError::UnknownOrchardAnchor {
                anchor: orchard::tree::Root::default(),
                height: Some(height),
                tx_index_in_block: Some(1),
                transaction_hash,
            },
            ValidateContextError::UnknownIronwoodAnchor {
                anchor: ironwood::tree::Root::default(),
                height: Some(height),
                tx_index_in_block: Some(1),
                transaction_hash,
            },
        ];

        for error in peer_faults {
            let commit_error = CommitBlockError::ValidateContextError(Box::new(error));
            assert_eq!(
                commit_error.misbehavior_score(),
                100,
                "direct contextual consensus failure must be scored: {commit_error:?}"
            );
        }

        for error in arithmetic_faults {
            let commit_error = CommitBlockError::ValidateContextError(Box::new(error));
            assert_eq!(
                commit_error.misbehavior_score(),
                0,
                "value-summation arithmetic failure must not be attributed to a peer: \
                 {commit_error:?}"
            );
        }

        let transient_context_error = CommitBlockError::ValidateContextError(Box::new(
            ValidateContextError::NotReadyToBeCommitted,
        ));
        assert_eq!(transient_context_error.misbehavior_score(), 0);

        let local_frontier_error = CommitBlockError::ValidateContextError(Box::new(
            ValidateContextError::HeaderRootAuthFrontier {
                reason: "test local storage fault".to_string(),
            },
        ));
        assert_eq!(local_frontier_error.misbehavior_score(), 0);

        let invalid_ancestor_error = CommitBlockError::ValidateContextError(Box::new(
            ValidateContextError::InvalidAncestorBlock(block::Hash([1; 32])),
        ));
        assert_eq!(invalid_ancestor_error.misbehavior_score(), 0);

        let stale_fork_error =
            CommitBlockError::ValidateContextError(Box::new(ValidateContextError::OrphanedBlock {
                candidate_height: Height(3),
                finalized_tip_height: height,
            }));
        assert_eq!(stale_fork_error.misbehavior_score(), 0);

        let local_frontier_error = CommitBlockError::ValidateContextError(Box::new(
            ValidateContextError::HeaderRootAuthFrontier {
                reason: "test frontier failure".to_string(),
            },
        ));
        assert_eq!(local_frontier_error.misbehavior_score(), 0);

        let dup_err = CommitBlockError::Duplicate {
            hash_or_height: None,
            location: KnownBlock::BestChain,
        };
        assert_eq!(dup_err.misbehavior_score(), 0);
    }

    #[test]
    fn checkpoint_error_exposes_retryable_vct_root_height() {
        let height = Height(42);
        let retryable: CommitCheckpointVerifiedError =
            ValidateContextError::VctSuppliedRootUnavailable { height }.into();
        assert_eq!(
            retryable.vct_supplied_root_unavailable_height(),
            Some(height),
            "checkpoint commit errors expose retryable VCT root misses"
        );

        let non_retryable: CommitCheckpointVerifiedError =
            ValidateContextError::NonSequentialBlock {
                candidate_height: Height(5),
                parent_height: Height(3),
            }
            .into();
        assert_eq!(
            non_retryable.vct_supplied_root_unavailable_height(),
            None,
            "unrelated validation errors are not treated as VCT root misses"
        );
        assert_eq!(
            non_retryable.vct_retryable_height(),
            None,
            "unrelated validation errors are not retryable VCT stalls"
        );
    }

    /// An await-successor stall is retryable (the write loop parks and re-commits) but is
    /// *not* a missing-root case: the root is present, only its successor is missing. So it
    /// must surface through `vct_retryable_height` while
    /// `vct_supplied_root_unavailable_height` (which selects the slower missing-root wait)
    /// stays `None` — otherwise the committer would poll slowly for a root it already holds.
    #[test]
    fn await_successor_is_retryable_but_not_root_unavailable() {
        let height = Height(7);
        let awaiting: CommitCheckpointVerifiedError =
            ValidateContextError::VctSuppliedRootAwaitingSuccessor { height }.into();

        assert_eq!(
            awaiting.vct_retryable_height(),
            Some(height),
            "an await-successor stall is retryable",
        );
        assert_eq!(
            awaiting.vct_supplied_root_unavailable_height(),
            None,
            "an await-successor stall is not a missing root (the root is present)",
        );

        // The unavailable case is both retryable and a missing root.
        let unavailable: CommitCheckpointVerifiedError =
            ValidateContextError::VctSuppliedRootUnavailable { height }.into();
        assert_eq!(unavailable.vct_retryable_height(), Some(height));
        assert_eq!(
            unavailable.vct_supplied_root_unavailable_height(),
            Some(height)
        );
    }
}