From e80bc5b03bd4734b04cbd2f7142988b12efda44e Mon Sep 17 00:00:00 2001 From: Vishal <64505169+vishalxl@users.noreply.github.com> Date: Mon, 7 Nov 2022 19:32:47 +0530 Subject: [PATCH] fixed mistype done few commits ago which wasn't getting kind 42 --- bin/nostr_console.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/nostr_console.dart b/bin/nostr_console.dart index 6a9f5e6..65a1faf 100644 --- a/bin/nostr_console.dart +++ b/bin/nostr_console.dart @@ -265,7 +265,7 @@ Future main(List arguments) async { getMultiUserEvents(gListRelayUrls1, gDefaultFollows, 1000, getSecondsDaysAgo(daysToGetEventsFor)); getMentionEvents(gListRelayUrls2, userPublicKey, gLimitPerSubscription, getSecondsDaysAgo(daysToGetEventsFor)); // from relay group 2 getKindEvents([0, 3, 40, 41, 140, 141], gListRelayUrls1, 3 * gLimitPerSubscription, getSecondsDaysAgo(daysToGetEventsFor* 100)); // get all type 3 etc - getKindEvents([442, 142], gListRelayUrls1, gLimitPerSubscription * 3, getSecondsDaysAgo( daysToGetEventsFor)); // get all type 3 etc + getKindEvents([42, 142], gListRelayUrls1, gLimitPerSubscription * 3, getSecondsDaysAgo( daysToGetEventsFor)); // get all type 3 etc // TODO get all 40 events, and then get all #e for them ( responses to them)