From 2d603c2aec4973783fd4d0eeea85a7f8f7b6e90c Mon Sep 17 00:00:00 2001 From: Vishal <64505169+vishalxl@users.noreply.github.com> Date: Fri, 30 Dec 2022 20:08:02 +0530 Subject: [PATCH] removed "lightning:" prefix from lud16 qr now it gets scanned by bluewallet --- lib/console_ui.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/console_ui.dart b/lib/console_ui.dart index 0085cd8..6df7592 100644 --- a/lib/console_ui.dart +++ b/lib/console_ui.dart @@ -349,7 +349,7 @@ void printProfile(Store node, String profilePubkey) { // print LNRUL lud16 if it exists if( lud16.length > gMinLud16AddressLength) { try { - String lud16LNString = "lightning:" + lud16; + String lud16LNString = "" + lud16; List? typesAndModule = getTypeAndModule(lud16LNString); if( typesAndModule != null) { print("Printing lud16 address as QR:\n\n");