mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2024-12-23 03:59:23 +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 {
|
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());
|
||||||
|
|
Loading…
Reference in a new issue