From 267c80fdefe66f0710b721eab285d6c99c3bd75e Mon Sep 17 00:00:00 2001 From: Vishal <64505169+vishalxl@users.noreply.github.com> Date: Mon, 7 Nov 2022 16:28:56 +0530 Subject: [PATCH] used myGetPublicKey --- bin/nostr_console.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/nostr_console.dart b/bin/nostr_console.dart index 9417a11..6a9f5e6 100644 --- a/bin/nostr_console.dart +++ b/bin/nostr_console.dart @@ -85,7 +85,7 @@ Future main(List arguments) async { print("Length of provided private key should be 64. Exiting."); return; } - userPublicKey = getPublicKey(userPrivateKey); + userPublicKey = myGetPublicKey(userPrivateKey); print("Going to use the provided private key"); }