Skip to content

Commit

Permalink
Merge pull request #491 from EspressoSystems/abdul/rm-send-bound
Browse files Browse the repository at this point in the history
remove Send bound for state commitment
  • Loading branch information
imabdulbasit authored Mar 20, 2024
2 parents 359c525 + 5d490bd commit 2297a1f
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
3 changes: 1 addition & 2 deletions src/data_source/extension.rs
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ use crate::{
};
use async_trait::async_trait;
use hotshot_types::traits::node_implementation::NodeType;
use jf_primitives::merkle_tree::{prelude::MerklePath, MerkleTreeScheme};
use jf_primitives::merkle_tree::prelude::MerklePath;
use std::ops::RangeBounds;

/// Wrapper to add extensibility to an existing data source.
Expand Down Expand Up @@ -285,7 +285,6 @@ where
U: Send + Sync,
Types: NodeType,
State: MerklizedState<Types>,
<State as MerkleTreeScheme>::Commitment: Send,
{
async fn get_path(
&self,
Expand Down
1 change: 0 additions & 1 deletion src/data_source/storage/sql.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1361,7 +1361,6 @@ impl<Types, State> MerklizedStateDataSource<Types, State> for SqlStorage
where
Types: NodeType,
State: MerklizedState<Types> + 'static,
State::Commitment: Send,
{
/// Retreives a Merkle path from the database
async fn get_path(
Expand Down

0 comments on commit 2297a1f

Please sign in to comment.