Skip to content

Commit

Permalink
fix fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
clangenb committed Apr 3, 2023
1 parent 0ad760f commit 8fd999c
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion app/lib/store/encointer/encointer.dart
Original file line number Diff line number Diff line change
Expand Up @@ -349,7 +349,8 @@ abstract class _EncointerStore with Store {
try {
if (chosenCid != null) {
if (_rootStore.account.currentAccountPubKey == null) return;
final data = await webApi.encointer.getAggregatedAccountData(chosenCid!, _rootStore.account.currentAccountPubKey!);
final data =
await webApi.encointer.getAggregatedAccountData(chosenCid!, _rootStore.account.currentAccountPubKey!);
setAggregatedAccountData(chosenCid!, _rootStore.account.currentAddress, data);
} else {
Log.d('chosenCid is null', 'Encointer updateAggregatedAccountData');
Expand Down

0 comments on commit 8fd999c

Please sign in to comment.