diff --git a/nostr_dvm/tasks/content_discovery_latest_one_per_follower.py b/nostr_dvm/tasks/content_discovery_latest_one_per_follower.py index ca02e43..8e39485 100644 --- a/nostr_dvm/tasks/content_discovery_latest_one_per_follower.py +++ b/nostr_dvm/tasks/content_discovery_latest_one_per_follower.py @@ -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() diff --git a/setup.py b/setup.py index 3edd88f..b827455 100644 --- a/setup.py +++ b/setup.py @@ -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')