Skip to content

Commit

Permalink
push version
Browse files Browse the repository at this point in the history
  • Loading branch information
believethehype committed Dec 31, 2024
1 parent b5bd309 commit 5033fe0
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions nostr_dvm/tasks/content_discovery_latest_one_per_follower.py
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ async def process(self, request_form):
opts = Options().relay_limits(relaylimits)

cli = ClientBuilder().signer(NostrSigner.keys(keys)).opts(opts).build()
for relay in self.dvm_config.RELAY_LIST:
for relay in self.dvm_config.SYNC_DB_RELAY_LIST:
await cli.add_relay(relay)
# ropts = RelayOptions().ping(False)
# await cli.add_relay_with_opts("wss://nostr.band", ropts)
Expand Down Expand Up @@ -124,7 +124,7 @@ async def scanList(users, instance, i, st, notactivesince):

keys = Keys.parse(self.dvm_config.PRIVATE_KEY)
cli = Client(NostrSigner.keys(keys))
for relay in self.dvm_config.RELAY_LIST:
for relay in self.dvm_config.SYNC_DB_RELAY_LIST:
await cli.add_relay(relay)
await cli.connect()

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
from setuptools import setup, find_packages

VERSION = '1.0.4'
VERSION = '1.0.5'
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')

Expand Down

0 comments on commit 5033fe0

Please sign in to comment.