Skip to content

Commit

Permalink
fix: WASM build
Browse files Browse the repository at this point in the history
  • Loading branch information
igamigo committed Jan 21, 2025
1 parent 1a98e99 commit b90891a
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions crates/rust-client/src/store/web_store/chain_data/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@ use alloc::{
};

use miden_objects::{
block::BlockNumber,
block::{BlockHeader, BlockNumber},
crypto::merkle::{InOrderIndex, MmrPeaks},
BlockHeader, Digest,
Digest,
};
use miden_tx::utils::Deserializable;
use serde_wasm_bindgen::from_value;
Expand Down
2 changes: 1 addition & 1 deletion crates/rust-client/src/store/web_store/chain_data/utils.rs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ use alloc::{
};
use core::num::NonZeroUsize;

use miden_objects::{crypto::merkle::InOrderIndex, BlockHeader, Digest};
use miden_objects::{block::BlockHeader, crypto::merkle::InOrderIndex, Digest};
use miden_tx::utils::Serializable;
use serde_wasm_bindgen::from_value;
use wasm_bindgen::JsValue;
Expand Down
4 changes: 2 additions & 2 deletions crates/rust-client/src/store/web_store/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@ use alloc::{boxed::Box, collections::BTreeMap, vec::Vec};

use miden_objects::{
accounts::{Account, AccountCode, AccountHeader, AccountId, AuthSecretKey},
block::BlockNumber,
block::{BlockHeader, BlockNumber},
crypto::merkle::{InOrderIndex, MmrPeaks},
notes::Nullifier,
BlockHeader, Digest, Word,
Digest, Word,
};
use tonic::async_trait;
use wasm_bindgen::prelude::*;
Expand Down
2 changes: 1 addition & 1 deletion crates/web-client/src/models/provers.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
use alloc::sync::Arc;

use miden_remote_provers::RemoteTransactionProver;
use miden_proving_service_client::RemoteTransactionProver;
use miden_tx::{LocalTransactionProver, TransactionProver as TransactionProverTrait};
use wasm_bindgen::prelude::*;

Expand Down

0 comments on commit b90891a

Please sign in to comment.