mirror of
https://github.com/getAlby/lndhub.go.git
synced 2025-12-21 14:44:45 +01:00
19 lines
450 B
Go
19 lines
450 B
Go
package common
|
|
|
|
const (
|
|
InvoiceTypeOutgoing = "outgoing"
|
|
InvoiceTypePaid = "paid_invoice"
|
|
InvoiceTypeIncoming = "incoming"
|
|
InvoiceTypeUser = "user_invoice"
|
|
|
|
InvoiceStateSettled = "settled"
|
|
InvoiceStateInitialized = "initialized"
|
|
InvoiceStateOpen = "open"
|
|
InvoiceStateError = "error"
|
|
|
|
AccountTypeIncoming = "incoming"
|
|
AccountTypeCurrent = "current"
|
|
AccountTypeOutgoing = "outgoing"
|
|
AccountTypeFees = "fees"
|
|
)
|