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/fwdingevent.go

18 lines
297 B
Go

package models
import "time"
type ForwardingEvent struct {
PeerAliasIn string
PeerAliasOut string
ChanIdIn uint64
ChanIdOut uint64
AmtIn uint64
AmtOut uint64
Fee uint64
FeeMsat uint64
AmtInMsat uint64
AmtOutMsat uint64
EventTime time.Time
}