Skip to content

Commit 449d7fa

Browse files
committed
fix: review comments for rpc/quorums help
1 parent 2883bdd commit 449d7fa

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

src/rpc/quorums.cpp

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -251,7 +251,7 @@ static RPCHelpMan quorum_info()
251251
GetRpcResult("quorumHash"),
252252
GetRpcResult("quorumIndex"),
253253
{RPCResult::Type::STR_HEX, "minedBlock", "Blockhash where the commitment was mined."},
254-
{RPCResult::Type::NUM, "previousConsecutiveDKGFailures", "Number of previous consecutive DKG failures."},
254+
{RPCResult::Type::NUM, "previousConsecutiveDKGFailures", "Number of previous consecutive DKG failures. Only present for rotation-enabled quorums."},
255255
{RPCResult::Type::ARR, "members", "Members of quorum",
256256
{
257257
{RPCResult::Type::OBJ, "", "",
@@ -260,7 +260,8 @@ static RPCHelpMan quorum_info()
260260
GetRpcResult("service"),
261261
GetRpcResult("addresses"),
262262
GetRpcResult("pubKeyOperator"),
263-
{RPCResult::Type::BOOL, "valid", "True is member valid for this DKG"}
263+
{RPCResult::Type::BOOL, "valid", "True if member is valid for this DKG"},
264+
{RPCResult::Type::STR_HEX, "pubKeyShare", /*optional=*/true, "Share of BLS public key of the member. Only present if member is valid."}
264265
}},
265266
},
266267
},

0 commit comments

Comments
 (0)