pub trait InputView<NoteRef> {
// Required methods
fn note_id(&self) -> &NoteRef;
fn value(&self) -> Zatoshis;
}
Expand description
A trait that provides a minimized view of a Sapling input suitable for use in fee and change calculation.
pub trait InputView<NoteRef> {
// Required methods
fn note_id(&self) -> &NoteRef;
fn value(&self) -> Zatoshis;
}
A trait that provides a minimized view of a Sapling input suitable for use in fee and change calculation.