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 918b8c5 commit 7dcd84aCopy full SHA for 7dcd84a
relay_client/src/client/stream.rs
@@ -32,7 +32,7 @@ use {
32
33
pub type SocketStream = WebSocketStream<MaybeTlsStream<TcpStream>>;
34
35
-/// Opens a cnnection to the Relay and returns [`ClientStream`] for the
+/// Opens a connection to the Relay and returns [`ClientStream`] for the
36
/// connection.
37
pub async fn create_stream(opts: ConnectionOptions) -> Result<ClientStream, Error> {
38
let (socket, _) = connect_async(opts.into_request()?)
relay_rpc/src/rpc.rs
@@ -534,6 +534,7 @@ pub struct SubscriptionData {
534
535
/// A label that identifies what type of message is sent based on the RPC
536
/// method used.
537
+ #[serde(default, skip_serializing_if = "is_default")]
538
pub tag: u32,
539
}
540
0 commit comments