mirror of
https://github.com/lightningnetwork/lnd.git
synced 2024-11-19 18:10:34 +01:00
11 lines
227 B
Go
11 lines
227 B
Go
|
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
|