Skip to content

Commit

Permalink
release 3391
Browse files Browse the repository at this point in the history
  • Loading branch information
RomeroYang committed Jan 28, 2023
1 parent 50f6a3f commit 770ecf0
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 14 deletions.
12 changes: 6 additions & 6 deletions ios/Runner.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -369,7 +369,7 @@
CODE_SIGN_ENTITLEMENTS = Runner/Runner.entitlements;
CODE_SIGN_IDENTITY = "Apple Development";
CODE_SIGN_STYLE = Automatic;
CURRENT_PROJECT_VERSION = 3381;
CURRENT_PROJECT_VERSION = 3391;
DEVELOPMENT_TEAM = WQ5H736A22;
ENABLE_BITCODE = NO;
EXCLUDED_ARCHS = armv7;
Expand All @@ -388,7 +388,7 @@
"$(inherited)",
"$(PROJECT_DIR)/Flutter",
);
MARKETING_VERSION = 3.3.8;
MARKETING_VERSION = 3.3.9;
ONLY_ACTIVE_ARCH = YES;
PRODUCT_BUNDLE_IDENTIFIER = io.polkawallet.polkawallet;
PRODUCT_NAME = "$(TARGET_NAME)";
Expand Down Expand Up @@ -517,7 +517,7 @@
CODE_SIGN_ENTITLEMENTS = Runner/Runner.entitlements;
CODE_SIGN_IDENTITY = "Apple Development";
CODE_SIGN_STYLE = Automatic;
CURRENT_PROJECT_VERSION = 3381;
CURRENT_PROJECT_VERSION = 3391;
DEVELOPMENT_TEAM = WQ5H736A22;
ENABLE_BITCODE = NO;
EXCLUDED_ARCHS = armv7;
Expand All @@ -536,7 +536,7 @@
"$(inherited)",
"$(PROJECT_DIR)/Flutter",
);
MARKETING_VERSION = 3.3.8;
MARKETING_VERSION = 3.3.9;
PRODUCT_BUNDLE_IDENTIFIER = io.polkawallet.polkawallet;
PRODUCT_NAME = "$(TARGET_NAME)";
PROVISIONING_PROFILE_SPECIFIER = "";
Expand All @@ -558,7 +558,7 @@
CODE_SIGN_ENTITLEMENTS = Runner/Runner.entitlements;
CODE_SIGN_IDENTITY = "Apple Development";
CODE_SIGN_STYLE = Automatic;
CURRENT_PROJECT_VERSION = 3381;
CURRENT_PROJECT_VERSION = 3391;
DEVELOPMENT_TEAM = WQ5H736A22;
ENABLE_BITCODE = NO;
EXCLUDED_ARCHS = armv7;
Expand All @@ -577,7 +577,7 @@
"$(inherited)",
"$(PROJECT_DIR)/Flutter",
);
MARKETING_VERSION = 3.3.8;
MARKETING_VERSION = 3.3.9;
ONLY_ACTIVE_ARCH = YES;
PRODUCT_BUNDLE_IDENTIFIER = io.polkawallet.polkawallet;
PRODUCT_NAME = "$(TARGET_NAME)";
Expand Down
2 changes: 1 addition & 1 deletion lib/pages/assets/transfer/transferPage.dart
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,7 @@ class TransferPageState extends State<TransferPage> {
return null;
}

Future<String> _getTxFee({bool isXCM = false, bool reload = false}) async {
Future<String> _getTxFee({bool reload = false}) async {
if (_fee?.partialFee != null && !reload) {
return _fee.partialFee.toString();
}
Expand Down
7 changes: 3 additions & 4 deletions lib/pages/ecosystem/completedPage.dart
Original file line number Diff line number Diff line change
Expand Up @@ -32,10 +32,9 @@ class _CompletedPageState extends State<CompletedPage> {
_getBalance(List<String> networkNames) async {
final data = ModalRoute.of(context).settings.arguments as Map;
final TokenBalanceData balance = data["balance"];
Map<String, TokenBalanceData> balances =
await TokenStakingApi.formatBalanceData(
widget.service, networkNames, balance.symbol,
isCacheChange: false);
final balances = TokenStakingApi.formatBalanceData(
widget.service, networkNames, balance.symbol,
isCacheChange: false);

setState(() {
_connecting = true;
Expand Down
6 changes: 3 additions & 3 deletions pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,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: 3.3.8+3381
version: 3.3.9+3391

environment:
sdk: ">=2.10.0 <3.0.0"
Expand Down Expand Up @@ -55,11 +55,11 @@ dependencies:
polkawallet_plugin_acala:
git:
url: https://github.com/AcalaNetwork/polkawallet_plugin_acala.git
ref: 93ec2762edd37f5b19dd5418f89d04da9034b2b0
ref: 5699b980f407e4f661d4d08a0fa791640430b902
polkawallet_plugin_karura:
git:
url: https://github.com/AcalaNetwork/polkawallet_plugin_karura.git
ref: e6df975389250e189f57e77c3bb34683d54e8857
ref: 4e6cc613daa3411fbd757e2a3b7ead8440749a49
polkawallet_plugin_statemine:
git:
url: https://github.com/polkawallet-io/polkawallet_plugin_statemine.git
Expand Down

0 comments on commit 770ecf0

Please sign in to comment.