Skip to content

Commit 3c4d453

Browse files
Core.podspec validation succeed.
1 parent 1129af1 commit 3c4d453

File tree

3 files changed

+3
-10
lines changed

3 files changed

+3
-10
lines changed

Sources/Core/Utility/BigUInt+Extension.swift

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -16,13 +16,6 @@ public extension BigUInt {
1616

1717
#if COCOAPODS
1818
extension BigUInt {
19-
var isZero: Bool {
20-
switch kind {
21-
case .inline(0, 0): return true
22-
case .array: return storage.isEmpty
23-
default:
24-
return false
25-
}
26-
}
19+
var isZero: Bool { self == 0 }
2720
}
2821
#endif

Web3Core.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ Pod::Spec.new do |spec|
22
spec.compiler_flags = '-DCOCOAPODS'
33

44
spec.name = 'Web3Core'
5-
spec.version = '3.0.0'
5+
spec.version = '3.0.4'
66
spec.module_name = 'Core'
77
spec.ios.deployment_target = "13.0"
88
spec.osx.deployment_target = "10.15"

web3swift.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
WEB3CORE_VERSION ||= '3.0.0'
1+
WEB3CORE_VERSION ||= '3.0.4'
22

33
Pod::Spec.new do |spec|
44
spec.name = 'web3swift'

0 commit comments

Comments
 (0)