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
112 changes: 59 additions & 53 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

14 changes: 7 additions & 7 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -61,13 +61,13 @@ miden-remote-prover-client = { path = "crates/remote-prover-client", versio
miden-node-rocksdb-cxx-linkage-fix = { path = "crates/rocksdb-cxx-linkage-fix", version = "0.15" }

# miden-protocol dependencies. These should be updated in sync.
miden-agglayer = { version = "0.14" }
miden-block-prover = { version = "0.14" }
miden-protocol = { default-features = false, version = "0.14" }
miden-standards = { version = "0.14" }
miden-testing = { version = "0.14" }
miden-tx = { default-features = false, version = "0.14" }
miden-tx-batch-prover = { version = "0.14" }
miden-agglayer = { branch = "next", git = "https://github.com/0xMiden/protocol" }
miden-block-prover = { branch = "next", git = "https://github.com/0xMiden/protocol" }
miden-protocol = { branch = "next", default-features = false, git = "https://github.com/0xMiden/protocol" }
miden-standards = { branch = "next", git = "https://github.com/0xMiden/protocol" }
miden-testing = { branch = "next", git = "https://github.com/0xMiden/protocol" }
miden-tx = { branch = "next", default-features = false, git = "https://github.com/0xMiden/protocol" }
miden-tx-batch-prover = { branch = "next", git = "https://github.com/0xMiden/protocol" }

# Other miden dependencies. These should align with those expected by miden-protocol.
miden-crypto = { version = "0.23" }
Expand Down
4 changes: 2 additions & 2 deletions bin/network-monitor/src/deploy/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ use miden_protocol::account::{Account, AccountId, PartialAccount, StorageMapKey}
use miden_protocol::asset::{AssetVaultKey, AssetWitness};
use miden_protocol::block::{BlockHeader, BlockNumber};
use miden_protocol::crypto::merkle::mmr::{MmrPeaks, PartialMmr};
use miden_protocol::note::NoteScript;
use miden_protocol::note::{NoteScript, NoteScriptRoot};
use miden_protocol::transaction::{AccountInputs, InputNotes, PartialBlockchain, TransactionArgs};
use miden_protocol::utils::serde::Serializable;
use miden_protocol::{MastForest, Word};
Expand Down Expand Up @@ -324,7 +324,7 @@ impl DataStore for MonitorDataStore {

async fn get_note_script(
&self,
_script_root: Word,
_script_root: NoteScriptRoot,
) -> Result<Option<NoteScript>, DataStoreError> {
Ok(None)
}
Expand Down
Loading
Loading