Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion relay_client/src/client/stream.rs
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ use {

pub type SocketStream = WebSocketStream<MaybeTlsStream<TcpStream>>;

/// Opens a cnnection to the Relay and returns [`ClientStream`] for the
/// Opens a connection to the Relay and returns [`ClientStream`] for the
/// connection.
pub async fn create_stream(opts: ConnectionOptions) -> Result<ClientStream, Error> {
let (socket, _) = connect_async(opts.into_request()?)
Expand Down
1 change: 1 addition & 0 deletions relay_rpc/src/rpc.rs
Original file line number Diff line number Diff line change
Expand Up @@ -534,6 +534,7 @@ pub struct SubscriptionData {

/// A label that identifies what type of message is sent based on the RPC
/// method used.
#[serde(default, skip_serializing_if = "is_default")]
pub tag: u32,
}

Expand Down