Merge pull request #2883 from tnull/2024-02-dyn-kvstore-blanket-impls
[rust-lightning] / lightning / src / util / test_utils.rs
index 09a8c3a26612725c07fedadc7cbb269814b54f88..8fc5a8197a78c38e13740ea663e678582676515f 100644 (file)
@@ -632,6 +632,9 @@ impl KVStore for TestStore {
        }
 }
 
+unsafe impl Sync for TestStore {}
+unsafe impl Send for TestStore {}
+
 pub struct TestBroadcaster {
        pub txn_broadcasted: Mutex<Vec<Transaction>>,
        pub blocks: Arc<Mutex<Vec<(Block, u32)>>>,