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
|
|
)
|