diff options
| author | Luke Dashjr <[email protected]> | 2012-07-11 18:52:41 +0000 |
|---|---|---|
| committer | Luke Dashjr <[email protected]> | 2014-06-26 11:49:46 +0000 |
| commit | 2a72d4591f5adf25fcb4d0433b390ba6c37f57a9 (patch) | |
| tree | b46f8cc4f0529ca6d1faebdb5690ba3353044fc1 /src/rpcserver.h | |
| parent | Merge pull request #4368 (diff) | |
| download | discoin-2a72d4591f5adf25fcb4d0433b390ba6c37f57a9.tar.xz discoin-2a72d4591f5adf25fcb4d0433b390ba6c37f57a9.zip | |
JSON-RPC method: prioritisetransaction <txid> <priority delta> <priority tx fee>
Accepts the transaction into mined blocks at a higher (or lower) priority
Diffstat (limited to 'src/rpcserver.h')
| -rw-r--r-- | src/rpcserver.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/rpcserver.h b/src/rpcserver.h index 527154238..1966a65b5 100644 --- a/src/rpcserver.h +++ b/src/rpcserver.h @@ -130,6 +130,7 @@ extern json_spirit::Value setgenerate(const json_spirit::Array& params, bool fHe extern json_spirit::Value getnetworkhashps(const json_spirit::Array& params, bool fHelp); extern json_spirit::Value gethashespersec(const json_spirit::Array& params, bool fHelp); extern json_spirit::Value getmininginfo(const json_spirit::Array& params, bool fHelp); +extern json_spirit::Value prioritisetransaction(const json_spirit::Array& params, bool fHelp); extern json_spirit::Value getblocktemplate(const json_spirit::Array& params, bool fHelp); extern json_spirit::Value submitblock(const json_spirit::Array& params, bool fHelp); extern json_spirit::Value estimatefee(const json_spirit::Array& params, bool fHelp); |