Skip to content

Commit f404a67

Browse files
committed
fix tuple warrning
1 parent 7267bcd commit f404a67

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Sources/web3swift/SwiftRLP/RLP.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -193,7 +193,7 @@ public struct RLP {
193193
return false
194194
case .data(_):
195195
return true
196-
case .list(_):
196+
case .list(_, _, _):
197197
return false
198198
}
199199
}
@@ -204,7 +204,7 @@ public struct RLP {
204204
return false
205205
case .data(_):
206206
return false
207-
case .list(_):
207+
case .list(_,_,_):
208208
return true
209209
}
210210
}

0 commit comments

Comments
 (0)