Skip to content

Commit

Permalink
Merge pull request #124 from ArcBlock/fix-format
Browse files Browse the repository at this point in the history
chore: fix format send string
  • Loading branch information
karthuszY authored Jun 14, 2024
2 parents 09c9493 + fd41d29 commit a86694b
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .jazzy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,4 @@ github_url: https://github.com/ArcBlock/arcblock-ios-sdk
github_file_prefix: https://github.com/ArcBlock/arcblock-ios-sdk/tree/master
exclude:
- ArcBlockSDK/ABSDKCoreKit/Network/ABSDKPagination.swift
module_version: 0.11.46
module_version: 0.11.47
2 changes: 1 addition & 1 deletion ArcBlockSDK.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

Pod::Spec.new do |s|
s.name = 'ArcBlockSDK'
s.version = '0.11.46'
s.version = '0.11.47'
s.summary = 'Used to integrate iOS apps with ArcBlock Platform.'

# This description is used to generate tags and improve search results.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,7 @@ public extension BigUInt {
formatter.numberStyle = .none
formatter.maximumFractionDigits = realDecimals
formatter.roundingMode = .floor
formatter.locale = Locale(identifier: "en_US") // 确定format后的字符串分割符号是. 德国和法国的分隔符号是,
return formatter.string(from: NSDecimalNumber(string: amountStr)) ?? "0"
}

Expand Down
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
## 0.11.47 (June 14, 2024)
- fix format

## 0.11.46 (June 03, 2024)
- update proto

Expand Down
2 changes: 1 addition & 1 deletion version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.11.46
0.11.47

0 comments on commit a86694b

Please sign in to comment.