You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The response returned from URL ${wallet.networkInfo.lcdUrl}/auth/accounts/${wallet.bech32Address} doesn't have coins property which is why this code
final coins = (value['coins'] as List)
.map((coinMap) => StdCoin.fromJson(coinMap))
.toList();
gives a null error. Even if the coins are being returned, this list of coins is never used anywhere in the flow. I solved it at my local. Creating a PR for this.
The text was updated successfully, but these errors were encountered:
File:
account_data_reviewer.dart
The response returned from URL
${wallet.networkInfo.lcdUrl}/auth/accounts/${wallet.bech32Address}
doesn't have coins property which is why this codegives a null error. Even if the coins are being returned, this list of coins is never used anywhere in the flow. I solved it at my local. Creating a PR for this.
The text was updated successfully, but these errors were encountered: