Skip to content

Commit 902809c

Browse files
PastaPastaPastaDuddino
authored andcommitted
replace inter-quorum with intra-quorum (dashpay#3642)
Inter means between two groups, intra means inside of a group. Signed-off-by: pasta <pasta@dashboost.org>
1 parent 46e51db commit 902809c

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
@@ -154,7 +154,7 @@ struct LLMQParams {
154154
// Number of quorums to consider "active" for signing sessions
155155
int signingActiveQuorumCount;
156156

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

src/llmq/quorums.h

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

0 commit comments

Comments
 (0)