File tree Expand file tree Collapse file tree 1 file changed +1
-1
lines changed Expand file tree Collapse file tree 1 file changed +1
-1
lines changed Original file line number Diff line number Diff line change @@ -245,7 +245,7 @@ extension APIRequest {
245
245
if Result . self == UInt . self || Result . self == Int . self || Result . self == BigInt . self || Result . self == BigUInt . self {
246
246
/// This types for sure conformed with `LiteralInitiableFromString`
247
247
// FIXME: Make appropriate error
248
- guard let U = Result . self as? LiteralInitiableFromString . Type else { throw Web3Error . unknownError}
248
+ guard let U = Result . self as? LiteralInitiableFromString . Type else { throw Web3Error . unknownError }
249
249
let responseAsString = try ! JSONDecoder ( ) . decode ( APIResponse< String> . self , from: data)
250
250
// FIXME: Add appropriate error thrown.
251
251
guard let literalValue = U . init ( from: responseAsString. result) else { throw Web3Error . unknownError }
You can’t perform that action at this time.
0 commit comments