You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Merge #778: Remove 'bitcoin' from address descriptions
e92ac19 Remove 'bitcoin' from address descriptions (Gregory Sanders)
Pull request description:
fixes#777
Alternative would be to have the `-chain` name be put there, but honestly seems overkill.
Tree-SHA512: a54e95f0755134fc6a1df51962a82957678d777406bda62a3f11359f52b8d72cd8c5199248f764ffbcf888b343737801d4ba19a58181a9b41bd4d3e5db656230
{"address_type", RPCArg::Type::STR, /* default */"set by -addresstype", "The address type to use. Options are \"legacy\", \"p2sh-segwit\", and \"bech32\". Default is set by -addresstype."},
{"dummy", RPCArg::Type::STR, RPCArg::Optional::NO, "Must be set to \"\" for backwards compatibility.", "\"\""},
921
921
{"amounts", RPCArg::Type::OBJ, RPCArg::Optional::NO, "A json object with addresses and amounts",
922
922
{
923
-
{"address", RPCArg::Type::AMOUNT, RPCArg::Optional::NO, "The bitcoin address is the key, the numeric amount (can be string) in " + CURRENCY_UNIT + " is the value"},
923
+
{"address", RPCArg::Type::AMOUNT, RPCArg::Optional::NO, "The address is the key, the numeric amount (can be string) in " + CURRENCY_UNIT + " is the value"},
924
924
},
925
925
},
926
926
{"minconf", RPCArg::Type::NUM, /* default */"1", "Only use the balance confirmed at least this many times."},
{"hexstring", RPCArg::Type::STR_HEX, RPCArg::Optional::NO, "The hex string of the raw transaction"},
3382
3382
{"options", RPCArg::Type::OBJ, RPCArg::Optional::OMITTED_NAMED_ARG, "for backward compatibility: passing in a true instead of an object will result in {\"includeWatching\":true}",
3383
3383
{
3384
-
{"changeAddress", RPCArg::Type::STR, /* default */"pool address", "The bitcoin address to receive the change"},
3384
+
{"changeAddress", RPCArg::Type::STR, /* default */"pool address", "The address to receive the change"},
3385
3385
{"changePosition", RPCArg::Type::NUM, /* default */"random", "The index of the change output"},
3386
3386
{"change_type", RPCArg::Type::STR, /* default */"set by -changetype", "The output type to use. Only valid if changeAddress is not specified. Options are \"legacy\", \"p2sh-segwit\", and \"bech32\"."},
3387
3387
{"includeWatching", RPCArg::Type::BOOL, /* default */"false", "Also select inputs which are watch only"},
{"address", RPCArg::Type::AMOUNT, RPCArg::Optional::NO, "A key-value pair. The key (string) is the bitcoin address, the value (float or string) is the amount in " + CURRENCY_UNIT + ""},
4608
+
{"address", RPCArg::Type::AMOUNT, RPCArg::Optional::NO, "A key-value pair. The key (string) is the address, the value (float or string) is the amount in " + CURRENCY_UNIT + ""},
{"changeAddress", RPCArg::Type::STR_HEX, /* default */"pool address", "The bitcoin address to receive the change"},
4621
+
{"changeAddress", RPCArg::Type::STR_HEX, /* default */"pool address", "The address to receive the change"},
4622
4622
{"changePosition", RPCArg::Type::NUM, /* default */"random", "The index of the change output"},
4623
4623
{"change_type", RPCArg::Type::STR, /* default */"set by -changetype", "The output type to use. Only valid if changeAddress is not specified. Options are \"legacy\", \"p2sh-segwit\", and \"bech32\"."},
4624
4624
{"includeWatching", RPCArg::Type::BOOL, /* default */"false", "Also select inputs which are watch only"},
0 commit comments