You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -45,7 +45,10 @@ export class LightningService {
45
45
break;
46
46
caseAppConnect.GRPC:
47
47
this.clnService=null;
48
-
thrownewValidationError(HttpStatusCode.INVALID_DATA,'gRPC connection to the Lightning node is not supported. Please use the COMMANDO or REST options for APP_CONNECT.');
48
+
thrownewValidationError(
49
+
HttpStatusCode.INVALID_DATA,
50
+
'gRPC connection to the Lightning node is not supported. Please use the COMMANDO or REST options for APP_CONNECT.',
51
+
);
49
52
// logger.info('GRPC connecting with config: ' + JSON.stringify(GRPC_CONFIG));
50
53
// this.clnService = new GRPCService(GRPC_CONFIG);
51
54
break;
@@ -71,8 +74,13 @@ export class LightningService {
71
74
returnaxios
72
75
.post(method,methodParams,this.axiosConfig)
73
76
.then((commandRes: any)=>{
74
-
logger.info('REST response for '+method+': '+JSON.stringify(commandRes.data));
0 commit comments