We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 98e0d74 + 1e2f8a3 commit a713cf4Copy full SHA for a713cf4
Sources/web3swift/Web3/Web3+Options.swift
@@ -235,7 +235,7 @@ extension TransactionOptions: Decodable {
235
self.to = ethAddr
236
}
237
238
- self.from = try container.decodeIfPresent(EthereumAddress.self, forKey: .to)
+ self.from = try container.decodeIfPresent(EthereumAddress.self, forKey: .from)
239
240
if let gasPrice = try? container.decodeHex(BigUInt.self, forKey: .gasPrice) {
241
self.gasPrice = .manual(gasPrice)
web3swift.podspec
@@ -1,6 +1,6 @@
1
Pod::Spec.new do |spec|
2
spec.name = 'web3swift'
3
- spec.version = '2.6.3'
+ spec.version = '2.6.5'
4
spec.ios.deployment_target = "9.0"
5
spec.osx.deployment_target = "10.12"
6
spec.license = { :type => 'Apache License 2.0', :file => 'LICENSE.md' }
0 commit comments