Skip to content

Commit

Permalink
Adds variant docs to zebra_state::request::Spend enum
Browse files Browse the repository at this point in the history
  • Loading branch information
arya2 committed Oct 5, 2024
1 parent 2f6eb26 commit 00da22c
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions zebra-state/src/request.rs
Original file line number Diff line number Diff line change
Expand Up @@ -35,9 +35,13 @@ use crate::{
/// [`sapling::Nullifier`], and [`orchard::Nullifier`].
#[derive(Copy, Clone, Debug, PartialEq, Eq)]
pub enum Spend {
/// A spend identified by a [`transparent::OutPoint`].
OutPoint(transparent::OutPoint),
/// A spend identified by a [`sprout::Nullifier`].
Sprout(sprout::Nullifier),
/// A spend identified by a [`sapling::Nullifier`].
Sapling(sapling::Nullifier),
/// A spend identified by a [`orchard::Nullifier`].
Orchard(orchard::Nullifier),
}

Expand Down

0 comments on commit 00da22c

Please sign in to comment.