lnd.xprv/record/custom_records.go

11 lines
227 B
Go
Raw Normal View History

2019-12-12 02:01:55 +03:00
package record
const (
// CustomTypeStart is the start of the custom tlv type range as defined
// in BOLT 01.
CustomTypeStart = 65536
)
// CustomSet stores a set of custom key/value pairs.
type CustomSet map[uint64][]byte