submitwork ( "hash" "data" )
Submits a solved PoW for a block that was previously created by 'creatework'.
DEPRECATED: If no hash is given, it will be deduced from the 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:
true|false (boolean) whether the submitted block was correct
Examples:
> spacexpanse-cli submitwork "hash" "solved data"
> curl --user myusername --data-binary '{"jsonrpc": "1.0", "id": "curltest", "method": "submitwork", "params": ["hash" "solved data"]}' -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"
}
]