2
0
mirror of https://github.com/edouardparis/lntop synced 2024-11-17 21:26:12 +00:00
lntop/network/models/node.go

18 lines
255 B
Go
Raw Normal View History

2019-04-04 11:06:38 +00:00
package models
import "time"
type Node struct {
NumChannels uint32
TotalCapacity int64
LastUpdate time.Time
PubKey string
Alias string
Addresses []*NodeAddress
}
type NodeAddress struct {
Network string
Addr string
}