You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
lntop/network/models/node.go

19 lines
277 B
Go

package models
import "time"
type Node struct {
NumChannels uint32
TotalCapacity int64
LastUpdate time.Time
PubKey string
Alias string
ForcedAlias string
Addresses []*NodeAddress
}
type NodeAddress struct {
Network string
Addr string
}