Skip to content

Commit

Permalink
add Send trait bound to AnyResolver's inner
Browse files Browse the repository at this point in the history
  • Loading branch information
zoedberg committed Sep 4, 2024
1 parent ab825ab commit 5aaadf3
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 @@ -44,7 +44,7 @@ pub trait RgbResolver {
#[derive(From)]
#[non_exhaustive]
pub struct AnyResolver {
inner: Box<dyn RgbResolver>,
inner: Box<dyn RgbResolver + Send>,
terminal_txes: HashMap<Txid, Tx>,
}

Expand Down

0 comments on commit 5aaadf3

Please sign in to comment.