Skip to content

Commit d8619cd

Browse files
committed
Merge 3689bc8 into merged_master (Elements PR ElementsProject#657)
2 parents 5c61681 + 3689bc8 commit d8619cd

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/wallet/rpcwallet.cpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5982,8 +5982,8 @@ UniValue issueasset(const JSONRPCRequest& request)
59825982
"For more fine-grained control such as non-empty contract-hashes to commit\n"
59835983
"to an issuance policy, see `rawissueasset` RPC call.\n",
59845984
{
5985-
{"assetamount", RPCArg::Type::AMOUNT, RPCArg::Optional::NO, "Amount of asset to generate."},
5986-
{"tokenamount", RPCArg::Type::AMOUNT, RPCArg::Optional::NO, "Amount of reissuance tokens to generate. These will allow you to reissue the asset if in wallet using `reissueasset`. These tokens are not consumed during reissuance."},
5985+
{"assetamount", RPCArg::Type::AMOUNT, RPCArg::Optional::NO, "Amount of asset to generate. Note that the amount is BTC-like, with 8 decimal places."},
5986+
{"tokenamount", RPCArg::Type::AMOUNT, RPCArg::Optional::NO, "Amount of reissuance tokens to generate. Note that the amount is BTC-like, with 8 decimal places. These will allow you to reissue the asset if in wallet using `reissueasset`. These tokens are not consumed during reissuance."},
59875987
{"blind", RPCArg::Type::BOOL , /* default */ "true", "Whether to blind the issuances."},
59885988
},
59895989
RPCResult{
@@ -6082,7 +6082,7 @@ UniValue reissueasset(const JSONRPCRequest& request)
60826082
"For more fine-grained control such as reissuing from a multi-signature address cold wallet, see `rawreissueasset` RPC call.\n",
60836083
{
60846084
{"asset", RPCArg::Type::STR, RPCArg::Optional::NO, "The asset you want to re-issue. The corresponding token must be in your wallet."},
6085-
{"assetamount", RPCArg::Type::AMOUNT, RPCArg::Optional::NO, "Amount of additional asset to generate."},
6085+
{"assetamount", RPCArg::Type::AMOUNT, RPCArg::Optional::NO, "Amount of additional asset to generate. Note that the amount is BTC-like, with 8 decimal places."},
60866086
},
60876087
RPCResult{
60886088
"{ (json object)\n"

0 commit comments

Comments
 (0)