mirror of
https://github.com/edouardparis/lntop
synced 2024-11-09 19:11:05 +00:00
9 lines
134 B
Go
9 lines
134 B
Go
package models
|
|
|
|
type HTLC struct {
|
|
Incoming bool
|
|
Amount int64
|
|
Hashlock []byte
|
|
ExpirationHeight uint32
|
|
}
|