mirror of
https://github.com/fluencelabs/tendermint
synced 2025-06-23 17:51:39 +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
|
|
}
|