Skip to content

Commit

Permalink
aUSD -> aSEED upgrade
Browse files Browse the repository at this point in the history
  • Loading branch information
RomeroYang committed Jul 21, 2023
1 parent e635577 commit f9b4ade
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
3 changes: 2 additions & 1 deletion lib/pages/v3/txConfirmPage.dart
Original file line number Diff line number Diff line change
Expand Up @@ -317,7 +317,8 @@ class _TxConfirmPageState extends State<TxConfirmPage> {
}

dynamic _updateKUSD(String value) {
value = value.replaceAll("KUSD", "AUSD");
value = value.replaceAll("KUSD", "ASEED");
value = value.replaceAll("AUSD", "ASEED");
return value;
}

Expand Down
3 changes: 2 additions & 1 deletion lib/pages/v3/xcmTxConfirmPage.dart
Original file line number Diff line number Diff line change
Expand Up @@ -335,7 +335,8 @@ class _XcmTxConfirmPageState extends State<XcmTxConfirmPage> {
}

dynamic _updateKUSD(String value) {
value = value.replaceAll("KUSD", "AUSD");
value = value.replaceAll("KUSD", "ASEED");
value = value.replaceAll("AUSD", "ASEED");
return value;
}

Expand Down
2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: polkawallet_ui
description: Common used Widgets for polkawallet app.
version: 0.5.4+1
version: 0.5.4+2
homepage: https://polkawallet.io

environment:
Expand Down

0 comments on commit f9b4ade

Please sign in to comment.