mirror of
https://github.com/lightninglabs/lightning-terminal.git
synced 2026-08-13 12:33:36 +02:00
multi: add accounts service to status manager
Add the accounts service to status manager. This will allow us to query the status of the accounts service and see if it is running or not. For incoming gRPC requests to the accounts service, we also use the status manager to check if the accounts service is running or not to determine if we should let the request through or not.
This commit is contained in:
parent
6f9f3244fb
commit
ec2a7a39b4
4 changed files with 31 additions and 27 deletions
|
|
@ -11,12 +11,13 @@ import (
|
|||
)
|
||||
|
||||
const (
|
||||
LND string = "lnd"
|
||||
LIT string = "lit"
|
||||
LOOP string = "loop"
|
||||
POOL string = "pool"
|
||||
TAP string = "taproot-assets"
|
||||
FARADAY string = "faraday"
|
||||
LND string = "lnd"
|
||||
LIT string = "lit"
|
||||
LOOP string = "loop"
|
||||
POOL string = "pool"
|
||||
TAP string = "taproot-assets"
|
||||
FARADAY string = "faraday"
|
||||
ACCOUNTS string = "accounts"
|
||||
)
|
||||
|
||||
// subServerWrapper is a wrapper around the SubServer interface and is used by
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue