Skip to content

Commit

Permalink
Fix for TEX without custom send
Browse files Browse the repository at this point in the history
  • Loading branch information
hhanh00 committed Jul 3, 2024
1 parent 4d32fde commit a264138
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion lib/pages/accounts/send.dart
Original file line number Diff line number Diff line change
Expand Up @@ -269,7 +269,8 @@ class _QuickSendState extends State<QuickSendPage> with WithLoadingAnimation {
try {
address2 = WarpApi.parseTexAddress(aa.coin, address2);
isTex = true;
poolKey.currentState!.setPools(1);
_pools = 1;
poolKey.currentState?.setPools(1);
} on String {}
final receivers = address.isNotEmptyAndNotNull
? WarpApi.receiversOfAddress(aa.coin, address2)
Expand Down
2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ publish_to: 'none' # Remove this line if you wish to publish to pub.dev
# In iOS, build-name is used as CFBundleShortVersionString while build-number used as CFBundleVersion.
# Read more about iOS versioning at
# https://developer.apple.com/library/archive/documentation/General/Reference/InfoPlistKeyReference/Articles/CoreFoundationKeys.html
version: 1.6.3+546
version: 1.6.3+547

environment:
sdk: ">=3.0.0 <4.0.0"
Expand Down

0 comments on commit a264138

Please sign in to comment.