diff --git a/libp2p/protocols/secure/secure.nim b/libp2p/protocols/secure/secure.nim index fb8c8e2..eb24eb6 100644 --- a/libp2p/protocols/secure/secure.nim +++ b/libp2p/protocols/secure/secure.nim @@ -20,7 +20,9 @@ import secureconn, type Secure* = ref object of LPProtocol # base type for secure managers -method handshake(s: Secure, conn: Connection, initiator: bool = true): Future[SecureConn] {.async, base.} = +method handshake(s: Secure, + conn: Connection, + initiator: bool = true): Future[SecureConn] {.async, base.} = doAssert(false, "Not implemented!") proc readLoop(sconn: SecureConn, stream: BufferStream) {.async.} =