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 { try {
print("CREATING INVOICE"); String bolt11 = await lightningViewModel.createInvoice(
String bolt11 = amountSats: amount,
await lightningViewModel.createInvoice(amountSats: amount, description: description); description: description,
print("CREATED INVOICE"); );
state = ExecutedSuccessfullyState(payload: bolt11); state = ExecutedSuccessfullyState(payload: bolt11);
} catch (e) { } catch (e) {
state = FailureState(e.toString()); state = FailureState(e.toString());