mirror of
https://github.com/aljazceru/lspd.git
synced 2025-12-18 22:34:22 +01:00
10 lines
213 B
Go
10 lines
213 B
Go
package common
|
|
|
|
import "github.com/lightningnetwork/lnd/tlv"
|
|
|
|
var ExtraFeeTlvType tlv.Type = 65536
|
|
|
|
func NewExtraFeeRecord(feeMsat *uint64) tlv.Record {
|
|
return tlv.MakePrimitiveRecord(ExtraFeeTlvType, feeMsat)
|
|
}
|