0xMiden/protocol

Refactor `MockChainNote` to always hold the full note details

Open

#2307 aperta il 19 gen 2026

Vedi su GitHub
 (4 commenti) (0 reazioni) (1 assegnatario)Rust (139 fork)github user discovery
good first issuetests

Metriche repository

Star
 (123 star)
Metriche merge PR
 (Merge medio 5g 11h) (110 PR mergiate in 30 g)

Descrizione

In tests, when we want to add a Private note at genesis, we do:

let input_note = builder.add_p2id_note(
    account.id(),
    account.id(),
    &[FungibleAsset::mock(0)],
    NoteType::Private,
)?;

and then inside of add_p2id_note, we add the note as self.add_output_note(OutputNote::Full(note.clone())); to the MockChainBuilder.

This is fine, but it causes MockChain::apply_block to later treat these notes always as Public:

  if let OutputNote::Full(note) = created_note {
      self.committed_notes
          .insert(note.id(), MockChainNote::Public(note.clone(), note_inclusion_proof));
  } else {

The current implementation (and as an extension, this PR) doesn't seem to cause issues, I think because even the MockChainNote::public but wrapping a private note contains the correct underlying note details (i.e. `note.metadata().is_private() will still be correct).

But this makes me realize that maybe the MockChainNote struct doesn't really serve its purpose and should be refactored (e.g. to always hold the full note details).

Originally posted by @mmagician in https://github.com/0xMiden/miden-base/pull/2205#discussion_r2672135301

Guida contributor