remove comments

This commit is contained in:
Matthew Fosse 2024-06-25 08:51:15 -07:00
parent 97dfc311dc
commit c9d278a23d

View file

@ -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());