mirror of
https://github.com/status-im/status-go.git
synced 2025-01-09 06:12:55 +00:00
9 lines
202 B
Go
9 lines
202 B
Go
|
package wakuv2
|
||
|
|
||
|
// Waku protocol parameters
|
||
|
const (
|
||
|
Version = uint64(2) // Peer version number
|
||
|
VersionStr = "2" // The same, as a string
|
||
|
Name = "waku" // Nickname of the protocol
|
||
|
)
|