Skip to content

Commit

Permalink
Fix missing text in help (#1421)
Browse files Browse the repository at this point in the history
* Fix automint help text

* Version bump
  • Loading branch information
justanwar authored Mar 17, 2024
1 parent f011c3a commit e2162aa
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion doc/README_windows.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Firo Core 0.14.11.x
Firo Core 0.14.13.x
=====================

Intro
Expand Down
6 changes: 4 additions & 2 deletions src/wallet/rpcwallet.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -3730,7 +3730,8 @@ UniValue automintspark(const JSONRPCRequest& request) {

if (request.fHelp || request.params.size() != 0)
throw std::runtime_error(
"This function automatically mints all unspent transparent funds\n"
"automintspark\n"
"This function automatically mints all unspent transparent funds to Spark.\n"
);

EnsureWalletIsUnlocked(pwallet);
Expand Down Expand Up @@ -4134,7 +4135,8 @@ UniValue autoMintlelantus(const JSONRPCRequest& request) {

if (request.fHelp || request.params.size() != 0)
throw std::runtime_error(
"This function automatically mints all unspent transparent funds\n"
"autoMintlelantus\n"
"This function automatically mints all unspent transparent funds to Lelantus.\n"
);

EnsureWalletIsUnlocked(pwallet);
Expand Down

0 comments on commit e2162aa

Please sign in to comment.