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
"\nDeniabilize one or more UTXOs that share the same address.\n",
1732
+
{
1733
+
{"inputs", RPCArg::Type::ARR, RPCArg::Optional::NO, "Specify inputs (must share the same address). A JSON array of JSON objects",
1734
+
{
1735
+
{"txid", RPCArg::Type::STR_HEX, RPCArg::Optional::NO, "The transaction id"},
1736
+
{"vout", RPCArg::Type::NUM, RPCArg::Optional::NO, "The output number"},
1737
+
{"sequence", RPCArg::Type::NUM, RPCArg::Optional::NO, "The sequence number"},
1738
+
},
1739
+
},
1740
+
{"conf_target", RPCArg::Type::NUM, RPCArg::DefaultHint{"wallet -txconfirmtarget"}, "Confirmation target in blocks"},
1741
+
{"add_to_wallet", RPCArg::Type::BOOL, RPCArg::Default{true}, "When false, returns the serialized transaction without broadcasting or adding it to the wallet"},
1742
+
},
1743
+
RPCResult{
1744
+
RPCResult::Type::OBJ, "", "",
1745
+
{
1746
+
{RPCResult::Type::STR_HEX, "txid", "The deniabilization transaction id."},
1747
+
{RPCResult::Type::STR_AMOUNT, "fee", "The fee used in the deniabilization transaction."},
1748
+
{RPCResult::Type::STR_HEX, "hex", /*optional=*/true, "If add_to_wallet is false, the hex-encoded raw transaction with signature(s)"},
0 commit comments