push version

This commit is contained in:
dbth 2024-12-31 10:57:59 +01:00
parent b5bd309a91
commit 5033fe0134
2 changed files with 3 additions and 3 deletions

View File

@ -77,7 +77,7 @@ class Discoverlatestperfollower(DVMTaskInterface):
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)
@ -124,7 +124,7 @@ class Discoverlatestperfollower(DVMTaskInterface):
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()

View File

@ -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')