Skip to content

Commit 7a5d407

Browse files
replace inter-quorum with intra-quorum (#3642)
Inter means between two groups, intra means inside of a group. Signed-off-by: pasta <pasta@dashboost.org>
1 parent 7223a7b commit 7a5d407

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/consensus/params.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ struct LLMQParams {
111111
// Number of quorums to consider "active" for signing sessions
112112
int signingActiveQuorumCount;
113113

114-
// Used for inter-quorum communication. This is the number of quorums for which we should keep old connections. This
114+
// Used for intra-quorum communication. This is the number of quorums for which we should keep old connections. This
115115
// should be at least one more then the active quorums set.
116116
int keepOldConnections;
117117

src/llmq/quorums.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ typedef std::shared_ptr<const CQuorum> CQuorumCPtr;
7676
* The quorum manager maintains quorums which were mined on chain. When a quorum is requested from the manager,
7777
* it will lookup the commitment (through CQuorumBlockProcessor) and build a CQuorum object from it.
7878
*
79-
* It is also responsible for initialization of the inter-quorum connections for new quorums.
79+
* It is also responsible for initialization of the intra-quorum connections for new quorums.
8080
*/
8181
class CQuorumManager
8282
{

0 commit comments

Comments
 (0)