Skip to content

Commit 573c80c

Browse files
committed
Fix incorrect filter for retrieving replies
1 parent 1d1ec0e commit 573c80c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

crates/dex-nostr-relay/src/handlers/order_replies.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ pub async fn handle(client: &RelayClient, event_id: EventId) -> crate::error::Re
1111
.req_and_wait(Filter {
1212
ids: None,
1313
authors: None,
14-
kinds: Some(BTreeSet::from([TakerReplyOrderKind::get_kind()])),
14+
kinds: None,
1515
search: None,
1616
since: None,
1717
until: None,

0 commit comments

Comments
 (0)