Skip to content

Commit

Permalink
Trivial: Fix a couple typos (#2818)
Browse files Browse the repository at this point in the history
* sp: s/signReqeust/signRequest/g

* sp: s/documenation/documentation/
  • Loading branch information
nmarley authored and codablock committed Apr 4, 2019
1 parent a370bbf commit 58589fb
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion src/init.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1932,7 +1932,7 @@ bool AppInitMain(boost::thread_group& threadGroup, CScheduler& scheduler)
activeMasternodeInfo.blsPubKeyOperator = std::make_unique<CBLSPublicKey>(activeMasternodeInfo.blsKeyOperator->GetPublicKey());
LogPrintf(" blsPubKeyOperator: %s\n", keyOperator.GetPublicKey().ToString());
} else {
return InitError(_("Invalid masternodeblsprivkey. Please see documenation."));
return InitError(_("Invalid masternodeblsprivkey. Please see documentation."));
}
} else {
return InitError(_("You must specify a masternodeblsprivkey in the configuration. Please see documentation for help."));
Expand Down
8 changes: 4 additions & 4 deletions src/rpc/rpcevo.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -282,10 +282,10 @@ static std::string SignAndSendSpecialTx(const CMutableTransaction& tx)
CDataStream ds(SER_NETWORK, PROTOCOL_VERSION);
ds << tx;

JSONRPCRequest signReqeust;
signReqeust.params.setArray();
signReqeust.params.push_back(HexStr(ds.begin(), ds.end()));
UniValue signResult = signrawtransaction(signReqeust);
JSONRPCRequest signRequest;
signRequest.params.setArray();
signRequest.params.push_back(HexStr(ds.begin(), ds.end()));
UniValue signResult = signrawtransaction(signRequest);

JSONRPCRequest sendRequest;
sendRequest.params.setArray();
Expand Down

0 comments on commit 58589fb

Please sign in to comment.