mirror of
https://github.com/status-im/status-go.git
synced 2025-01-09 14:16:21 +00:00
5a8f1feea9
* feat: network functions for local pairing (#3898)
20 lines
326 B
Go
20 lines
326 B
Go
package versioning
|
|
|
|
type ConnectionParamVersion int
|
|
|
|
const (
|
|
ConnectionParamsV1 ConnectionParamVersion = iota + 1
|
|
ConnectionParamsV2
|
|
)
|
|
|
|
type LocalPairingVersion int
|
|
|
|
const (
|
|
LocalPairingV1 LocalPairingVersion = iota + 1
|
|
)
|
|
|
|
const (
|
|
LatestConnectionParamVer = ConnectionParamsV2
|
|
LatestLocalPairingVer = LocalPairingV1
|
|
)
|