From 7af4f1cac72bee61fc93d72c3b70b2cf502bb52b Mon Sep 17 00:00:00 2001 From: CryptoTeller Date: Sun, 26 Jul 2020 15:11:40 -0500 Subject: [PATCH 1/2] Update rpcevo.cpp I would like to mirror docs.dash.org/en/stable/masternodes/maintenance.html#proupservtx by adding the specific term "BLS" to the rpc help menu to differentiate this is not a dash address key like the other ownerkey votingkey. We had this changed on the docs site to help clarify for people who were missing the point this was the operator BLS key. --- src/rpc/rpcevo.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/rpc/rpcevo.cpp b/src/rpc/rpcevo.cpp index 171b6a54b188..2d843297a430 100644 --- a/src/rpc/rpcevo.cpp +++ b/src/rpc/rpcevo.cpp @@ -61,7 +61,7 @@ std::string GetHelpString(int nParamNum, std::string strParamName) " Must be unique on the network. Can be set to 0, which will require a ProUpServTx afterwards.\n" }, {"operatorKey", - "%d. \"operatorKey\" (string, required) The operator private key belonging to the\n" + "%d. \"operatorKey\" (string, required) The operator BLS private key associated with the\n" " registered operator public key.\n" }, {"operatorPayoutAddress", From bb20989210aae07407b1910a3fa8d8bdb775f458 Mon Sep 17 00:00:00 2001 From: CryptoTeller Date: Mon, 27 Jul 2020 11:26:45 -0500 Subject: [PATCH 2/2] Update rpcevo.cpp --- src/rpc/rpcevo.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/rpc/rpcevo.cpp b/src/rpc/rpcevo.cpp index 2d843297a430..c983468973ef 100644 --- a/src/rpc/rpcevo.cpp +++ b/src/rpc/rpcevo.cpp @@ -70,12 +70,12 @@ std::string GetHelpString(int nParamNum, std::string strParamName) " If set to an empty string, the currently active payout address is reused.\n" }, {"operatorPubKey_register", - "%d. \"operatorPubKey\" (string, required) The operator BLS public key. The private key does not have to be known.\n" - " It has to match the private key which is later used when operating the masternode.\n" + "%d. \"operatorPubKey\" (string, required) The operator BLS public key. The BLS private key does not have to be known.\n" + " It has to match the BLS private key which is later used when operating the masternode.\n" }, {"operatorPubKey_update", - "%d. \"operatorPubKey\" (string, required) The operator BLS public key. The private key does not have to be known.\n" - " It has to match the private key which is later used when operating the masternode.\n" + "%d. \"operatorPubKey\" (string, required) The operator BLS public key. The BLS private key does not have to be known.\n" + " It has to match the BLS private key which is later used when operating the masternode.\n" " If set to an empty string, the currently active operator BLS public key is reused.\n" }, {"operatorReward",