refactor: suppress nrt for RemoteEndPoint read

This commit is contained in:
Oliver Booth 2024-02-13 00:07:10 +00:00
parent 906d5870f8
commit bf7f14acac
Signed by: oliverbooth
GPG Key ID: E60B570D1B7557B5
1 changed files with 1 additions and 1 deletions

View File

@ -91,7 +91,7 @@ public sealed class ProtocolClient : ClientNode
} }
IsConnected = true; IsConnected = true;
RemoteEndPoint = BaseSocket.RemoteEndPoint; RemoteEndPoint = BaseSocket.RemoteEndPoint!;
State = ClientState.Handshaking; State = ClientState.Handshaking;
var handshakeRequest = new HandshakeRequestPacket(ProtocolVersion); var handshakeRequest = new HandshakeRequestPacket(ProtocolVersion);