From ea5b0cddced6d362118939601b526b594c69eaa0 Mon Sep 17 00:00:00 2001 From: Believethehype <1097224+believethehype@users.noreply.github.com> Date: Thu, 28 Mar 2024 10:14:30 +0100 Subject: [PATCH] Update dvm.py --- nostr_dvm/dvm.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/nostr_dvm/dvm.py b/nostr_dvm/dvm.py index 2abc8c3..a310fb2 100644 --- a/nostr_dvm/dvm.py +++ b/nostr_dvm/dvm.py @@ -48,7 +48,8 @@ class DVM: self.jobs_on_hold_list = [] pk = self.keys.public_key() - print("Nostr DVM public key: " + str(pk.to_bech32()) + " Hex: " + str(pk.to_hex()) + "\n") + print("Nostr DVM public key: " + str(pk.to_bech32()) + " Hex: " + str(pk.to_hex()) + " Supported DVM tasks: " + + ', '.join(p.NAME + ":" + p.TASK for p in self.dvm_config.SUPPORTED_DVMS) + "\n") for relay in self.dvm_config.RELAY_LIST: self.client.add_relay(relay)