OSDN Git Service

feat(federation): add /get-fed-info api (#228)
[bytom/vapor.git] / federation / common / const.go
1 package common
2
3 const (
4         _ uint8 = iota
5         CrossTxPendingStatus
6         CrossTxCompletedStatus
7 )
8
9 const (
10         CrossTxPendingStatusLabel   = "pending"
11         CrossTxCompletedStatusLabel = "completed"
12 )