aboutsummaryrefslogtreecommitdiff
path: root/src/rpc/misc.cpp
diff options
context:
space:
mode:
authorSamuel Dobson <dobsonsa68@gmail.com>2021-09-28 15:08:13 +1300
committerSamuel Dobson <dobsonsa68@gmail.com>2021-12-08 17:11:46 +1300
commitd1a9742623e2a8f3307c84c2df6993f62617a6f6 (patch)
treeea7492b6ab42700a29dbfa78c3e4823f11b1114a /src/rpc/misc.cpp
parentfa3fb46b8172597cb64ff401b27f6c799fb832d7 (diff)
downloadbitcoin-d1a9742623e2a8f3307c84c2df6993f62617a6f6.tar.xz
Add warnings field to createmultisig to warn about uncompressed keys
Diffstat (limited to 'src/rpc/misc.cpp')
-rw-r--r--src/rpc/misc.cpp11
1 files changed, 11 insertions, 0 deletions
diff --git a/src/rpc/misc.cpp b/src/rpc/misc.cpp
index 2c05fc39fd..762f6665da 100644
--- a/src/rpc/misc.cpp
+++ b/src/rpc/misc.cpp
@@ -113,6 +113,10 @@ static RPCHelpMan createmultisig()
{RPCResult::Type::STR, "address", "The value of the new multisig address."},
{RPCResult::Type::STR_HEX, "redeemScript", "The string value of the hex-encoded redemption script."},
{RPCResult::Type::STR, "descriptor", "The descriptor for this multisig"},
+ {RPCResult::Type::ARR, "warnings", /* optional */ true, "Any warnings resulting from the creation of this multisig",
+ {
+ {RPCResult::Type::STR, "", ""},
+ }},
}
},
RPCExamples{
@@ -161,6 +165,13 @@ static RPCHelpMan createmultisig()
result.pushKV("redeemScript", HexStr(inner));
result.pushKV("descriptor", descriptor->ToString());
+ UniValue warnings(UniValue::VARR);
+ if (!request.params[2].isNull() && OutputTypeFromDestination(dest) != output_type) {
+ // Only warns if the user has explicitly chosen an address type we cannot generate
+ warnings.push_back("Unable to make chosen address type, please ensure no uncompressed public keys are present.");
+ }
+ if (warnings.size()) result.pushKV("warnings", warnings);
+
return result;
},
};