Skip to content

Commit b23fbba

Browse files
authored
Merge pull request #2020 from CosmWasm/backtrace-sync-send
Added Sync + Send to Printable used in BT
2 parents fa2fea3 + 3bfbf8c commit b23fbba

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/std/src/errors/backtrace.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ use crate::prelude::*;
55
/// This wraps an actual backtrace to achieve two things:
66
/// - being able to fill this with a stub implementation in `no_std` environments
77
/// - being able to use this in conjunction with [`thiserror::Error`]
8-
pub struct BT(Box<dyn Printable>);
8+
pub struct BT(Box<dyn Printable + Sync + Send>);
99

1010
impl BT {
1111
#[track_caller]

0 commit comments

Comments
 (0)