mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2024-12-22 19:49:22 +00:00
remove comments
This commit is contained in:
parent
97dfc311dc
commit
c9d278a23d
1 changed files with 4 additions and 4 deletions
|
@ -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());
|
||||
|
|
Loading…
Reference in a new issue