2017-04-17 01:19:39 +03:00
|
|
|
package lnwire
|
|
|
|
|
2017-10-24 01:50:26 +03:00
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
)
|
|
|
|
|
2017-09-08 04:25:43 +03:00
|
|
|
// ShortChannelID represents the set of data which is needed to retrieve all
|
2017-04-17 01:19:39 +03:00
|
|
|
// necessary data to validate the channel existence.
|
|
|
|
type ShortChannelID struct {
|
|
|
|
// BlockHeight is the height of the block where funding transaction
|
|
|
|
// located.
|
|
|
|
//
|
|
|
|
// NOTE: This field is limited to 3 bytes.
|
|
|
|
BlockHeight uint32
|
|
|
|
|
|
|
|
// TxIndex is a position of funding transaction within a block.
|
|
|
|
//
|
|
|
|
// NOTE: This field is limited to 3 bytes.
|
|
|
|
TxIndex uint32
|
|
|
|
|
|
|
|
// TxPosition indicating transaction output which pays to the channel.
|
|
|
|
TxPosition uint16
|
|
|
|
}
|
|
|
|
|
|
|
|
// NewShortChanIDFromInt returns a new ShortChannelID which is the decoded
|
|
|
|
// version of the compact channel ID encoded within the uint64. The format of
|
|
|
|
// the compact channel ID is as follows: 3 bytes for the block height, 3 bytes
|
|
|
|
// for the transaction index, and 2 bytes for the output index.
|
|
|
|
func NewShortChanIDFromInt(chanID uint64) ShortChannelID {
|
|
|
|
return ShortChannelID{
|
|
|
|
BlockHeight: uint32(chanID >> 40),
|
|
|
|
TxIndex: uint32(chanID>>16) & 0xFFFFFF,
|
|
|
|
TxPosition: uint16(chanID),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// ToUint64 converts the ShortChannelID into a compact format encoded within a
|
|
|
|
// uint64 (8 bytes).
|
2018-04-06 03:59:50 +03:00
|
|
|
func (c ShortChannelID) ToUint64() uint64 {
|
2017-04-17 01:19:39 +03:00
|
|
|
// TODO(roasbeef): explicit error on overflow?
|
|
|
|
return ((uint64(c.BlockHeight) << 40) | (uint64(c.TxIndex) << 16) |
|
|
|
|
(uint64(c.TxPosition)))
|
|
|
|
}
|
2017-10-24 01:50:26 +03:00
|
|
|
|
|
|
|
// String generates a human-readable representation of the channel ID.
|
|
|
|
func (c ShortChannelID) String() string {
|
|
|
|
return fmt.Sprintf("%d:%d:%d", c.BlockHeight, c.TxIndex, c.TxPosition)
|
|
|
|
}
|