From 825fc20c9ac4ce02e4e3b8103e0560d2e9ea8080 Mon Sep 17 00:00:00 2001 From: Believethehype <1097224+believethehype@users.noreply.github.com> Date: Thu, 3 Oct 2024 21:18:26 +0200 Subject: [PATCH] Update 05_announce_dvm.py --- tutorials/05_announce_dvm.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tutorials/05_announce_dvm.py b/tutorials/05_announce_dvm.py index 54c0b19..1bbc3ba 100644 --- a/tutorials/05_announce_dvm.py +++ b/tutorials/05_announce_dvm.py @@ -22,8 +22,8 @@ from nostr_dvm.utils.zap_utils import change_ln_address # We keep the main code structure almost the same as in tutorial02. def run_dvm(identifier, announce): dvm_config = build_default_config(identifier) - kind = 5050 - dvm_config.KIND = Kind(kind) + kind = Kind(5050) + dvm_config.KIND = kind options = { "some_option": "#RunDVM", }