remove unnecessary change

This commit is contained in:
Diego 2024-02-06 14:18:00 +01:00
parent 4158849521
commit 0317d589ce
No known key found for this signature in database
GPG Key ID: C9DAC9BF68D1F806
2 changed files with 3 additions and 4 deletions

View File

@ -45,8 +45,8 @@ macro checkFutures*[F](futs: seq[F], exclude: untyped = []): untyped =
debug "A future has failed, enable trace logging for details", error=exc.name
trace "Exception details", msg=exc.msg
proc allFuturesThrowing*[F: FutureBase](args: varargs[F]): Future[void] =
var futs: seq[F]
proc allFuturesThrowing*[T](args: varargs[Future[T]]): Future[void] =
var futs: seq[Future[T]]
for fut in args:
futs &= fut
proc call() {.async.} =

View File

@ -19,8 +19,7 @@ import rpc/[messages, message, protobuf],
../../stream/connection,
../../crypto/crypto,
../../protobuf/minprotobuf,
../../utility,
../../utils/future
../../utility
export peerid, connection, deques