mirror of
https://github.com/edouardparis/lntop
synced 2024-11-16 00:12:44 +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
|
|
}
|