small cleanup

This commit is contained in:
fosse 2024-02-26 12:41:36 -05:00
parent 60618e19bd
commit b474d90243
2 changed files with 1 additions and 4 deletions

View file

@ -45,8 +45,6 @@ abstract class LightningViewModelBase with Store {
description: 'limits', description: 'limits',
); );
final res = await sdk.receivePayment(req: req); final res = await sdk.receivePayment(req: req);
// sdk. return [(res.openingFeeMsat).toString(), '10000'];
// TODO: CW-563 figure out how to get the limits
return [(res.openingFeeMsat).toString(), '20000'];
} }
} }

View file

@ -66,7 +66,6 @@ abstract class WalletNewVMBase extends WalletCreationVM with Store {
case WalletType.bitcoin: case WalletType.bitcoin:
return bitcoin!.createBitcoinNewWalletCredentials(name: name); return bitcoin!.createBitcoinNewWalletCredentials(name: name);
case WalletType.lightning: case WalletType.lightning:
// return lightning!.createLightningNewWalletCredentials(name: name);// TODO: CW-563 see if necessary
return bitcoin!.createBitcoinNewWalletCredentials(name: name); return bitcoin!.createBitcoinNewWalletCredentials(name: name);
case WalletType.litecoin: case WalletType.litecoin:
return bitcoin!.createBitcoinNewWalletCredentials(name: name); return bitcoin!.createBitcoinNewWalletCredentials(name: name);