fix/protocol-strings (#222)

Co-authored-by: Oskar Thorén <ot@oskarthoren.com>
This commit is contained in:
Dean Eigenmann 2020-10-13 13:10:31 +02:00 committed by GitHub
parent 6a6b3e1662
commit bef916b31c
2 changed files with 2 additions and 2 deletions

View File

@ -21,7 +21,7 @@ logScope:
topics = "wakufilter" topics = "wakufilter"
const const
WakuFilterCodec* = "/vac/waku/filter/2.0.0-alpha6" WakuFilterCodec* = "/vac/waku/filter/2.0.0-beta1"
proc encode*(filter: ContentFilter): ProtoBuffer = proc encode*(filter: ContentFilter): ProtoBuffer =
result = initProtoBuffer() result = initProtoBuffer()

View File

@ -14,7 +14,7 @@ logScope:
topics = "wakustore" topics = "wakustore"
const const
WakuStoreCodec* = "/vac/waku/store/2.0.0-alpha6" WakuStoreCodec* = "/vac/waku/store/2.0.0-beta1"
proc init*(T: type HistoryQuery, buffer: seq[byte]): ProtoResult[T] = proc init*(T: type HistoryQuery, buffer: seq[byte]): ProtoResult[T] =
var msg = HistoryQuery() var msg = HistoryQuery()