Skip to content

Commit

Permalink
Fix typo in automintspark RPC call (#1253)
Browse files Browse the repository at this point in the history
justanwar authored Jun 8, 2023

Verified

This commit was signed with the committer’s verified signature. The key has expired.
Urhengulas Johann Hemmann
1 parent 6a7c0f9 commit 6338e4b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/wallet/rpcwallet.cpp
Original file line number Diff line number Diff line change
@@ -3596,7 +3596,7 @@ UniValue mintspark(const JSONRPCRequest& request)
return result;
}

UniValue autoMintspark(const JSONRPCRequest& request) {
UniValue automintspark(const JSONRPCRequest& request) {
CWallet * const pwallet = GetWalletForJSONRPCRequest(request);
if (!EnsureWalletIsAvailable(pwallet, request.fHelp)) {
return NullUniValue;
@@ -5543,7 +5543,7 @@ static const CRPCCommand commands[] =
{ "wallet", "resetsparkmints", &resetsparkmints, false },
{ "wallet", "setsparkmintstatus", &setsparkmintstatus, false },
{ "wallet", "mintspark", &mintspark, false },
{ "wallet", "autoMintspark", &autoMintspark, false },
{ "wallet", "automintspark", &automintspark, false },
{ "wallet", "spendspark", &spendspark, false },
{ "wallet", "lelantustospark", &lelantustospark, false },

0 comments on commit 6338e4b

Please sign in to comment.