Skip to content

Commit

Permalink
chore(rpc): adjust field type in getwalletinfo help
Browse files Browse the repository at this point in the history
  • Loading branch information
thephez committed Sep 28, 2023
1 parent 2958aac commit e0785cb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/wallet/rpcwallet.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2503,7 +2503,7 @@ static UniValue getwalletinfo(const JSONRPCRequest& request)
{RPCResult::Type::NUM_TIME, "unlocked_until", /* optional */ true, "the " + UNIX_EPOCH_TIME + " until which the wallet is unlocked for transfers, or 0 if the wallet is locked (only present for passphrase-encrypted wallets)"},
{RPCResult::Type::STR_AMOUNT, "paytxfee", "the transaction fee configuration, set in " + CURRENCY_UNIT + "/kB"},
{RPCResult::Type::STR_HEX, "hdchainid", "the ID of the HD chain"},
{RPCResult::Type::STR, "hdaccountcount", "how many accounts of the HD chain are in this wallet"},
{RPCResult::Type::NUM, "hdaccountcount", "how many accounts of the HD chain are in this wallet"},
{RPCResult::Type::ARR, "hdaccounts", "",
{
{RPCResult::Type::OBJ, "", "",
Expand Down

0 comments on commit e0785cb

Please sign in to comment.