# Priortise a transaction Accepts the transaction into mined blocks at a higher (or lower) priority. Endpoint: GET /daemon/prioritisetransaction Version: 6.6.1 Security: ZelID ## Query parameters: - `txid` (string, required) The transaction id Example: "22ab3d049154c7d4b0f04b381770c655564facdc896a4f7e97aa5662f57a58c6" - `prioritydelta` (integer, required) The priority to add or subtract. The transaction selection algorithm considers the tx as it would have a higher priority. (priority of a transaction is calculated: coinage * value_in_satoshis / txsize) - `feedelta` (integer, required) The fee value (in satoshis) to add (or subtract, if negative). The fee is not actually paid, only the algorithm for selecting transactions into a block considers the transaction as it would have paid a higher (or lower) fee. Example: 10000 ## Response 200 fields (application/json): - `status` (string) Explanation of status Enum: "success", "error" - `data` (boolean) Returns true