mirror of
https://github.com/status-im/nim-libp2p.git
synced 2025-01-24 03:39:15 +00:00
remove error pragma
This commit is contained in:
parent
368176f8d1
commit
7d647c1555
@ -42,11 +42,11 @@ method listen*(t: Transport, ma: MultiAddress, handler: ConnHandler) {.base, asy
|
||||
t.ma = ma
|
||||
t.handler = handler
|
||||
|
||||
method dial*(t: Transport, address: MultiAddress): Future[Connection] {.base, async, error: "not implemented".} =
|
||||
method dial*(t: Transport, address: MultiAddress): Future[Connection] {.base, async.} =
|
||||
## dial a peer
|
||||
discard
|
||||
|
||||
method supports(t: Transport, address: MultiAddress): bool {.base, error: "not implemented".} =
|
||||
method supports(t: Transport, address: MultiAddress): bool {.base.} =
|
||||
## check if transport supportes the multiaddress
|
||||
# TODO: this should implement generic logic that would use the multicodec
|
||||
# declared in the multicodec field and set by each individual transport
|
||||
|
Loading…
x
Reference in New Issue
Block a user