Skip to content

Commit b00daa3

Browse files
authored
Merge pull request #517 from tnull/2025-04-fix-ldk-0.1.2-changes
Accommodate minor change in `test_utils` API introduce by LDK 0.1.2
2 parents fb23bad + 4a40ab5 commit b00daa3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/io/test_utils.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ pub(crate) fn do_read_write_remove_list_persist<K: KVStore + RefUnwindSafe>(kv_s
8080

8181
// Integration-test the given KVStore implementation. Test relaying a few payments and check that
8282
// the persisted data is updated the appropriate number of times.
83-
pub(crate) fn do_test_store<K: KVStore>(store_0: &K, store_1: &K) {
83+
pub(crate) fn do_test_store<K: KVStore + Sync>(store_0: &K, store_1: &K) {
8484
let chanmon_cfgs = create_chanmon_cfgs(2);
8585
let mut node_cfgs = create_node_cfgs(2, &chanmon_cfgs);
8686
let chain_mon_0 = test_utils::TestChainMonitor::new(

0 commit comments

Comments
 (0)