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 2d1c6bb commit 101d995Copy full SHA for 101d995
Sources/web3swift/Utils/EIP/EIP712.swift
@@ -39,10 +39,9 @@ public extension EIP712Hashable {
39
}
40
41
private func dependencies() -> [EIP712Hashable] {
42
- let dependencies = Mirror(reflecting: self).children
+ Mirror(reflecting: self).children
43
.compactMap { $0.value as? EIP712Hashable }
44
.flatMap { [$0] + $0.dependencies() }
45
- return dependencies
46
47
48
private func encodePrimaryType() -> String {
0 commit comments