We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ee26d1e commit d74c20cCopy full SHA for d74c20c
Sources/Web3Core/Structure/Transaction/TransactionReceipt.swift
@@ -72,6 +72,10 @@ extension TransactionReceipt: Decodable {
72
}
73
74
self.logs = try container.decode([EventLog].self, forKey: .logs)
75
+
76
+ if let hexBytes = try? container.decodeHex(Data.self, forKey: .logsBloom) {
77
+ self.logsBloom = EthereumBloomFilter(hexBytes)
78
+ }
79
80
81
0 commit comments