rename shared package to common

This commit is contained in:
Jesse de Wit
2023-10-26 14:39:03 +02:00
parent fb3b051d02
commit 3cf4b714a9
22 changed files with 251 additions and 251 deletions

View File

@@ -0,0 +1,9 @@
package common
import "github.com/lightningnetwork/lnd/tlv"
var ExtraFeeTlvType tlv.Type = 65536
func NewExtraFeeRecord(feeMsat *uint64) tlv.Record {
return tlv.MakePrimitiveRecord(ExtraFeeTlvType, feeMsat)
}