diff --git a/nostr_dvm/subscription.py b/nostr_dvm/subscription.py index 5ac3f89..8a4e4bf 100644 --- a/nostr_dvm/subscription.py +++ b/nostr_dvm/subscription.py @@ -46,7 +46,7 @@ async def run_subscription(self, dvm_config, admin_config): self.job_list = [] print(bcolors.BLUE + "[Subscription] " + "Nostr Subscription Handler public key: " + str( - pk.to_bech32()) + " Hex: " + str(pk.to_hex()) + "\n" + bcolors.ENDC) + pk.to_bech32()) + " Hex: " + str(pk.to_hex()) + bcolors.ENDC) for relay in self.dvm_config.RELAY_LIST: diff --git a/setup.py b/setup.py index 79e77b1..dd3f766 100644 --- a/setup.py +++ b/setup.py @@ -1,6 +1,6 @@ from setuptools import setup, find_packages -VERSION = '0.9.13' +VERSION = '0.9.14' 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')