This commit is contained in:
fosse 2023-08-18 09:34:05 -04:00
parent a8ed087a9f
commit 6dcc713f8d
2 changed files with 0 additions and 2 deletions

View file

@ -42,7 +42,6 @@ class ManagePowNodesPage extends BasePage {
sectionCount: 1,
dividerPadding: EdgeInsets.symmetric(horizontal: 24),
itemCounter: (int sectionIndex) {
print(nodeListViewModel.nodes);
return nodeListViewModel.nodes.length;
},
itemBuilder: (_, index) {

View file

@ -36,7 +36,6 @@ abstract class WalletRestoreChooseDerivationViewModelBase with Store {
var walletType = credentials["walletType"] as WalletType;
var appStore = getIt.get<AppStore>();
var node = appStore.settingsStore.getCurrentNode(walletType);
print(node.uri);
switch (walletType) {
case WalletType.nano:
String? mnemonic = credentials['seed'] as String?;