dione/node/wire/inv.go

18 lines
177 B
Go
Raw Normal View History

2021-06-02 19:45:55 +00:00
package wire
type InvType int
const (
InvalidInvType = iota
TxInvType
)
type InvMessage struct {
Inventory []InvItem
}
type InvItem struct {
Type InvType
Hash []byte
}