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
"redeemmultisigout": "redeemmultisigout \"hash\" index tree (\"address\")\n\nTakes the input and constructs a P2PKH paying to the specified address.\n\nArguments:\n1. hash (string, required) Hash of the input transaction\n2. index (numeric, required) Idx of the input transaction\n3. tree (numeric, required) Tree the transaction is on.\n4. address (string, optional) Address to pay to.\n\nResult:\n{\n\"hex\": \"value\", (string) Resulting hash.\n\"complete\": true|false, (boolean) Shows if opperation was completed.\n\"errors\": [{ (array of object) Any errors generated.\n\"txid\": \"value\", (string) The transaction hash of the referenced previous output\n\"vout\": n, (numeric) The output index of the referenced previous output\n\"scriptSig\": \"value\", (string) The hex-encoded signature script\n\"sequence\": n, (numeric) Script sequence number\n\"error\": \"value\", (string) Verification or signing error related to the input\n },...], \n} \n",
55
55
"redeemmultisigouts": "redeemmultisigouts \"fromscraddress\" (\"toaddress\" number)\n\nTakes a hash, looks up all unspent outpoints and generates list artially signed transactions spending to either an address specified or internal addresses\n\nArguments:\n1. fromscraddress (string, required) Input script hash address.\n2. toaddress (string, optional) Address to look for (if not internal addresses).\n3. number (numeric, optional) Number of outpoints found.\n\nResult:\n{\n\"hex\": \"value\", (string) Resulting hash.\n\"complete\": true|false, (boolean) Shows if opperation was completed.\n\"errors\": [{ (array of object) Any errors generated.\n\"txid\": \"value\", (string) The transaction hash of the referenced previous output\n\"vout\": n, (numeric) The output index of the referenced previous output\n\"scriptSig\": \"value\", (string) The hex-encoded signature script\n\"sequence\": n, (numeric) Script sequence number\n\"error\": \"value\", (string) Verification or signing error related to the input\n },...], \n} \n",
56
56
"renameaccount": "renameaccount \"oldaccount\"\"newaccount\"\n\nRenames an account.\n\nArguments:\n1. oldaccount (string, required) The old account name to rename\n2. newaccount (string, required) The new name for the account\n\nResult:\nNothing\n",
57
+
"removescript": "removescript \"script\"\n\nRemoves the provided script from the wallet.\n\nArguments:\n1. script (string, required) The script to remove.\n\nResult:\nNothing\n",
57
58
"rescanwallet": "rescanwallet (beginheight=0)\n\nRescan the block chain for wallet data, blocking until the rescan completes or exits with an error\n\nArguments:\n1. beginheight (numeric, optional, default=0) The height of the first block to begin the rescan from\n\nResult:\nNothing\n",
58
59
"revoketickets": "revoketickets\n\nRequests the wallet create revovactions for any previously missed tickets. Wallet must be unlocked.\n\nArguments:\nNone\n\nResult:\nNothing\n",
59
60
"sendfrom": "sendfrom \"fromaccount\"\"toaddress\" amount (minconf=1 \"comment\"\"commentto\")\n\nDEPRECATED -- Authors, signs, and sends a transaction that outputs some amount to a payment address.\nA change output is automatically included to send extra output value back to the original account.\n\nArguments:\n1. fromaccount (string, required) Account to pick unspent outputs from\n2. toaddress (string, required) Address to pay\n3. amount (numeric, required) Amount to send to the payment address valued in decred\n4. minconf (numeric, optional, default=1) Minimum number of block confirmations required before a transaction output is eligible to be spent\n5. comment (string, optional) Unused\n6. commentto (string, optional) Unused\n\nResult:\n\"value\" (string) The transaction hash of the sent transaction\n",
@@ -84,4 +85,4 @@ var localeHelpDescs = map[string]func() map[string]string{
0 commit comments