From 07292981f2c81aec89a27268b00e55abe9d41d6e Mon Sep 17 00:00:00 2001 From: quanzhan lu Date: Wed, 1 Apr 2020 16:14:18 +0800 Subject: [PATCH 1/3] correct gasLimit --- Sources/web3swift/Transaction/EthereumTransaction.swift | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Sources/web3swift/Transaction/EthereumTransaction.swift b/Sources/web3swift/Transaction/EthereumTransaction.swift index a8538ccab..2ecb4b42b 100755 --- a/Sources/web3swift/Transaction/EthereumTransaction.swift +++ b/Sources/web3swift/Transaction/EthereumTransaction.swift @@ -306,6 +306,8 @@ public extension EthereumTransaction { switch gL { case .manual(let value): self.gasLimit = value + case .limited(let value): + self.gasLimit = value default: self.gasLimit = BigUInt(UInt64(21000)) } From fd909776f964a21fa3dce90ab2ca71be9bcde883 Mon Sep 17 00:00:00 2001 From: quanzhan lu Date: Wed, 1 Apr 2020 16:20:32 +0800 Subject: [PATCH 2/3] Rename Web3swift.pod.podspec to web3swift.pod.podspec --- Web3swift.pod.podspec => web3swift.pod.podspec | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename Web3swift.pod.podspec => web3swift.pod.podspec (100%) diff --git a/Web3swift.pod.podspec b/web3swift.pod.podspec similarity index 100% rename from Web3swift.pod.podspec rename to web3swift.pod.podspec From f65fc3dcdcb8d2e697c52cbd2260d6c2601bc671 Mon Sep 17 00:00:00 2001 From: quanzhan lu Date: Wed, 1 Apr 2020 16:21:47 +0800 Subject: [PATCH 3/3] Update web3swift.pod.podspec --- web3swift.pod.podspec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web3swift.pod.podspec b/web3swift.pod.podspec index fcd01b1ed..f84f7c8b0 100755 --- a/web3swift.pod.podspec +++ b/web3swift.pod.podspec @@ -1,5 +1,5 @@ Pod::Spec.new do |spec| - spec.name = 'Web3swift.pod' + spec.name = 'web3swift.pod' spec.version = '2.2.1' spec.ios.deployment_target = "9.0" spec.osx.deployment_target = "10.11"