mirror of
https://github.com/waku-org/nwaku.git
synced 2025-01-11 23:35:08 +00:00
1bba183492
* Implement waku filter client subscribe tests. * Remove legacy filter tests. * Fix constant for max criteria per subscription limit.
9 lines
173 B
Nim
9 lines
173 B
Nim
import
|
|
chronicles,
|
|
chronos
|
|
|
|
import ../../../waku/waku_core/message
|
|
|
|
proc newPushHandlerFuture*(): Future[(string, WakuMessage)] =
|
|
newFuture[(string, WakuMessage)]()
|