OSDN Git Service

doc(federation): add /list-crosschain-txs docs (#222)
[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 )