Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
gabaldon committed Aug 9, 2023
1 parent 2d827f2 commit cfc9a73
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions lib/bloc/explorer/api_explorer.dart
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
import 'dart:developer';

import 'package:my_wit_wallet/util/storage/database/transaction_adapter.dart';
import 'package:witnet/data_structures.dart';
import 'package:witnet/explorer.dart';
Expand Down
2 changes: 1 addition & 1 deletion lib/bloc/explorer/explorer_bloc.dart
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import 'dart:async';
import 'dart:developer';

import 'package:bloc/bloc.dart';
import 'package:equatable/equatable.dart';
Expand Down Expand Up @@ -235,7 +236,6 @@ class ExplorerBloc extends Bloc<ExplorerEvent, ExplorerState> {
/// loop over the explorer response
/// which is Map<String, List<Utxo>> key = address
Map<String, Account> updatedAccounts = {};

for (int addressIndex = 0;
addressIndex < _utxos.length;
addressIndex++) {
Expand Down

0 comments on commit cfc9a73

Please sign in to comment.