Skip to content

Commit

Permalink
indexers: remove Sync requirement from AnyResolver
Browse files Browse the repository at this point in the history
  • Loading branch information
dr-orlovsky committed Sep 25, 2024
1 parent 94d6951 commit 479b0ed
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/indexers/any.rs
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ pub trait RgbResolver: Send {
#[derive(From)]
#[non_exhaustive]
pub struct AnyResolver {
inner: Arc<dyn RgbResolver + Sync>,
inner: Box<dyn RgbResolver>,
terminal_txes: HashMap<Txid, Tx>,
}

Expand Down

0 comments on commit 479b0ed

Please sign in to comment.