Bitcoin RPCClientError Enumeration RPCClientError Client-side RPC errors. enum RPCClientError Overview These represent errors in the client transport/decoding layer, not server-originated errors (which are RPCError). Topics Enumeration Cases case blockRejected(reason: String)submitBlock returned a non-null rejection string. case decodingFailed(method: String, responseData: Data, underlying: any Error)The response could not be decoded into the expected type. case unexpectedNullResult(method: String, responseData: Data)The server returned null for an RPC that expects a non-null result. case walletPathNotSupportedA wallet path was provided to a transport that doesn’t support it. Instance Properties var description: String var errorDescription: String? var method: String?The RPC method name, if this error is associated with one.