From 463f51d371848de7a0bfe91823053d3024feabec Mon Sep 17 00:00:00 2001 From: yyforyongyu Date: Fri, 27 Jun 2025 19:57:53 +0800 Subject: [PATCH] lncfg: enable quiescence in non-dev environment --- lncfg/protocol.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lncfg/protocol.go b/lncfg/protocol.go index 3c5220d72..4d348b215 100644 --- a/lncfg/protocol.go +++ b/lncfg/protocol.go @@ -147,7 +147,7 @@ func (l *ProtocolOptions) NoExperimentalEndorsement() bool { // NoQuiescence returns true if quiescence is disabled. func (l *ProtocolOptions) NoQuiescence() bool { - return true + return false } // CustomMessageOverrides returns the set of protocol messages that we override