We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1d93e5f commit 9d2960cCopy full SHA for 9d2960c
src/note.rs
@@ -419,7 +419,7 @@ impl Note {
419
/// Panics if `self.asset().is_zatoshi()`.
420
///
421
/// [Split Input note]: https://zips.z.cash/zip-0226#split-notes
422
- pub fn create_split_note(self, rng: &mut impl RngCore) -> Self {
+ pub(crate) fn create_split_note(self, rng: &mut impl RngCore) -> Self {
423
assert!(bool::from(!self.asset().is_zatoshi()));
424
Note {
425
rseed_split_note: CtOption::new(RandomSeed::random(rng, &self.rho()), 1u8.into()),
0 commit comments