remove useless error pragma

This commit is contained in:
Dmitriy Ryajov 2019-08-27 20:32:20 -06:00
parent 261204853e
commit 954a78fda0
1 changed files with 2 additions and 2 deletions

View File

@ -23,7 +23,7 @@ type
handler*: ConnHandler
multicodec*: MultiCodec
method init*(t: Transport) {.base, error: "not implemented".} =
method init*(t: Transport) {.base.} =
## perform protocol initialization
discard
@ -49,7 +49,7 @@ method dial*(t: Transport,
## dial a peer
discard
method supports(t: Transport, address: MultiAddress): bool {.base.} =
method handles*(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