OSDN Git Service

versoin1.1.9 (#594)
[bytom/vapor.git] / toolbar / vote_reward / database / orm / utxo.go
1 package orm
2
3 type Utxo struct {
4         ID          uint64 `gorm:"primary_key"`
5         OutputID    string
6         Xpub        string
7         VoteAddress string
8         VoteNum     uint64
9         VoteHeight  uint64
10         VetoHeight  uint64
11 }