Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@

- Added `ecdsa_k256_keccak::PublicKey` as a valid template type ([#2097](https://github.com/0xMiden/miden-base/pull/2097)).
- [BREAKING] Fix advice inputs in transaction inputs not being propagated through ([#2099](https://github.com/0xMiden/miden-base/pull/2099)).
- Add `S` generic to `NullifierTree` to allow usage with `LargeSmt`s ([#1353](https://github.com/0xMiden/miden-node/issues/1353)).

## 0.12.2 (2025-11-12)

Expand Down
6 changes: 3 additions & 3 deletions crates/miden-objects/src/account/account_id/id_prefix.rs
Original file line number Diff line number Diff line change
Expand Up @@ -51,9 +51,9 @@ impl AccountIdPrefix {
///
/// Panics if the prefix does not contain a known account ID version.
///
/// If debug_assertions are enabled (e.g. in debug mode), this function panics if the given
/// felt is invalid according to the constraints in the
/// [`AccountId`](crate::account::AccountId) documentation.
/// If `debug_assertions` are enabled (e.g. in debug mode), this function panics if the given
/// felt is invalid according to the constraints in the [`AccountId`](crate::account::AccountId)
/// documentation.
pub fn new_unchecked(prefix: Felt) -> Self {
// The prefix contains the metadata.
// If we add more versions in the future, we may need to generalize this.
Expand Down
3 changes: 1 addition & 2 deletions crates/miden-objects/src/block/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,7 @@ pub use partial_account_tree::PartialAccountTree;

pub mod account_tree;

mod nullifier_tree;
pub use nullifier_tree::NullifierTree;
pub mod nullifier_tree;

mod blockchain;
pub use blockchain::Blockchain;
Expand Down
Loading