getwork ( "hash" "data" )
Creates or submits a stand-alone mined block.
Without arguments, creates a new block and returns information required to solve it.
With arguments, submits a solved PoW for a previously-returned block.
DEPRECATED: If hash is not given, it will be deduced from data. Prefer to add an explicit hash.
Arguments:
1. hash (string, optional) Hash of the block to submit
2. data (string, optional) Solved block header data
Result (without arguments):
{ (json object)
"hash" : "hex", (string) hash of the created block
"data" : "hex", (string) data to solve
"algo" : "str", (string) mining algorithm ("neoscrypt")
"previousblockhash" : "hex", (string) hash of the previous block
"coinbasevalue" : n, (numeric) value of the block's coinbase
"bits" : "hex", (string) compressed target of the block
"height" : n, (numeric) height of the block
"target" : "hex" (string) target in reversed byte order, deprecated
}
Result (with arguments):
true|false (boolean) whether the submitted block was correct
Examples:
> spacexpanse-cli getwork
> spacexpanse-cli getwork "hash" "solved data"
> curl --user myusername --data-binary '{"jsonrpc": "1.0", "id": "curltest", "method": "getwork", "params": []}' -H 'content-type: text/plain;' http://127.0.0.1:11998/
[
{
"name": "hash",
"detailsLines": [],
"properties": [
"string",
"optional"
],
"description": "Hash of the block to submit"
},
{
"name": "data",
"detailsLines": [],
"properties": [
"string",
"optional"
],
"description": "Solved block header data"
}
]