mirror of
https://github.com/tendermint/tendermint.git
synced 2026-02-07 20:40:44 +00:00
9 lines
241 B
Go
9 lines
241 B
Go
package types
|
|
|
|
type NameRegEntry struct {
|
|
Name []byte // registered name for the entry
|
|
Owner []byte // address that created the entry
|
|
Data []byte // binary encoded byte array
|
|
Expires uint // block at which this entry expires
|
|
}
|