mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2025-03-12 09:32:33 +00:00
[skipci] code cleanup
This commit is contained in:
parent
be9a784237
commit
ac2d4a6c96
1 changed files with 0 additions and 18 deletions
|
@ -1,18 +0,0 @@
|
|||
enum LightningReceiveOption {
|
||||
lightningInvoice,
|
||||
lightningOnchain;
|
||||
|
||||
@override
|
||||
String toString() {
|
||||
String label = '';
|
||||
switch (this) {
|
||||
case LightningReceiveOption.lightningInvoice:
|
||||
label = 'Lightning via Invoice';
|
||||
break;
|
||||
case LightningReceiveOption.lightningOnchain:
|
||||
label = 'Lightning via BTC address';
|
||||
break;
|
||||
}
|
||||
return label;
|
||||
}
|
||||
}
|
Loading…
Reference in a new issue