Skip to content

Commit

Permalink
Fix Array ABIValueType. (#32)
Browse files Browse the repository at this point in the history
  • Loading branch information
fortmarek authored and SirensOfTitan committed Sep 10, 2018
1 parent 933339e commit cb718d4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion EtherKit/ABI.swift
Original file line number Diff line number Diff line change
Expand Up @@ -251,7 +251,7 @@ extension Data: ABIValueType {
}
}

extension Array: ABIValueType where Element == ABIValueType {
extension Array: ABIValueType where Element: ABIValueType {
public var abiType: ABIType {
if count == 0 {
fatalError()
Expand Down

0 comments on commit cb718d4

Please sign in to comment.