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',
);
final res = await sdk.receivePayment(req: req);
// sdk.
// TODO: CW-563 figure out how to get the limits
return [(res.openingFeeMsat).toString(), '20000'];
return [(res.openingFeeMsat).toString(), '10000'];
}
}

View file

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