avoid dev refresh of lnd
This commit is contained in:
parent
ec8e775ae6
commit
1645c2aabf
@ -2,11 +2,13 @@ import { cachedFetcher } from '@/lib/fetch'
|
|||||||
import { toPositiveNumber } from '@/lib/validate'
|
import { toPositiveNumber } from '@/lib/validate'
|
||||||
import { authenticatedLndGrpc, getIdentity, getHeight, getWalletInfo, getNode } from 'ln-service'
|
import { authenticatedLndGrpc, getIdentity, getHeight, getWalletInfo, getNode } from 'ln-service'
|
||||||
|
|
||||||
const { lnd } = authenticatedLndGrpc({
|
const lnd = global.lnd || authenticatedLndGrpc({
|
||||||
cert: process.env.LND_CERT,
|
cert: process.env.LND_CERT,
|
||||||
macaroon: process.env.LND_MACAROON,
|
macaroon: process.env.LND_MACAROON,
|
||||||
socket: process.env.LND_SOCKET
|
socket: process.env.LND_SOCKET
|
||||||
})
|
}).lnd
|
||||||
|
|
||||||
|
if (process.env.NODE_ENV === 'development') global.lnd = lnd
|
||||||
|
|
||||||
// Check LND GRPC connection
|
// Check LND GRPC connection
|
||||||
getWalletInfo({ lnd }, (err, result) => {
|
getWalletInfo({ lnd }, (err, result) => {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user