mirror of
https://github.com/status-im/nim-codex.git
synced 2025-02-03 14:33:24 +00:00
e5df8c50d3
* style: nph setup * chore: formates codex/ and tests/ folder with nph 0.6.1
11 lines
216 B
Nim
11 lines
216 B
Nim
import pkg/chronos
|
|
|
|
proc asyncSpawn*(future: Future[void], ignore: type CatchableError) =
|
|
proc ignoringError() {.async.} =
|
|
try:
|
|
await future
|
|
except ignore:
|
|
discard
|
|
|
|
asyncSpawn ignoringError()
|