From c9d278a23dccf5dd8aa80d93c7830e3a00a4c7ec Mon Sep 17 00:00:00 2001 From: Matthew Fosse Date: Tue, 25 Jun 2024 08:51:15 -0700 Subject: [PATCH] remove comments --- lib/view_model/lightning_invoice_page_view_model.dart | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/lib/view_model/lightning_invoice_page_view_model.dart b/lib/view_model/lightning_invoice_page_view_model.dart index 6a1bb4a83..4ab8b7b2f 100644 --- a/lib/view_model/lightning_invoice_page_view_model.dart +++ b/lib/view_model/lightning_invoice_page_view_model.dart @@ -91,10 +91,10 @@ abstract class LightningInvoicePageViewModelBase with Store { } try { - print("CREATING INVOICE"); - String bolt11 = - await lightningViewModel.createInvoice(amountSats: amount, description: description); - print("CREATED INVOICE"); + String bolt11 = await lightningViewModel.createInvoice( + amountSats: amount, + description: description, + ); state = ExecutedSuccessfullyState(payload: bolt11); } catch (e) { state = FailureState(e.toString());