The following rpc features were deprecated in V0.17:
validateaddress
returning wallet information about an addresssignrawtransaction
This PR fully removes those features. It can be merged once V0.17 has been branched from master.
The following rpc features were deprecated in V0.17:
validateaddress
returning wallet information about an addresssignrawtransaction
This PR fully removes those features. It can be merged once V0.17 has been branched from master.
72-#endif
73- if (ret["address"].isNull()) {
74- std::string currentAddress = EncodeDestination(dest);
75- ret.pushKV("address", currentAddress);
76+ CScript scriptPubKey = GetScriptForDestination(dest);
77+ ret.pushKV("scriptPubKey", HexStr(scriptPubKey.begin(), scriptPubKey.end()));;
createmultisig() was updated in V0.16 to not use the wallet. Warning
text was included to warn the user. Remove that now.