From c4637b57620717a00b03ee34eaadd93a7e4b9b64 Mon Sep 17 00:00:00 2001 From: Believethehype <1097224+believethehype@users.noreply.github.com> Date: Thu, 11 Jul 2024 11:05:22 +0200 Subject: [PATCH] and more reduction of subscription status updates --- nostr_dvm/dvm.py | 6 +++--- setup.py | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/nostr_dvm/dvm.py b/nostr_dvm/dvm.py index bf77a05..6a579d1 100644 --- a/nostr_dvm/dvm.py +++ b/nostr_dvm/dvm.py @@ -246,9 +246,9 @@ class DVM: print( "[" + self.dvm_config.NIP89.NAME + "] Hinting user for Subscription: " + nip90_event.id().to_hex()) - await send_job_status_reaction(nip90_event, "subscription-required", - False, 0, client=self.client, - dvm_config=self.dvm_config) + #await send_job_status_reaction(nip90_event, "subscription-required", + # False, 0, client=self.client, + # dvm_config=self.dvm_config) else: bid = 0 for tag in nip90_event.tags(): diff --git a/setup.py b/setup.py index ab6fbb0..d45da4d 100644 --- a/setup.py +++ b/setup.py @@ -1,6 +1,6 @@ from setuptools import setup, find_packages -VERSION = '0.7.2' +VERSION = '0.7.3' DESCRIPTION = 'A framework to build and run Nostr NIP90 Data Vending Machines' LONG_DESCRIPTION = ('A framework to build and run Nostr NIP90 Data Vending Machines. See the github repository for more information')