0
I want create a coinbase transaction to go with a new block minned by my program. I am creating it with the json-rpc command createrawtransaction. What's the values for txid and vout in this case?
0
I want create a coinbase transaction to go with a new block minned by my program. I am creating it with the json-rpc command createrawtransaction. What's the values for txid and vout in this case?
3
The coinbase transaction contains a single input, which has txid set to 0000000000000000000000000000000000000000000000000000000000000000 and vout set to 0xFFFFFFFF.
with this values, I got a Parse error as response. the json string I using is: {"jsonrpc": "1.0", "id":"curltest", "method":"createrawtransaction", "params":[{"txid":"0000000000000000000000000000000000000000000000000000000000000000","vout":0xFFFFFFFF}]. I also try with "vout":"0xFFFFFFFF" – Kleber Mota – 2017-08-25T23:31:26.057
@KleberMota You cannot enter a hex number or string for vout. That is invalid JSON. – Andrew Chow – 2017-10-25T03:37:05.943
what the right way? beginner here, and don't found this anywhere. – Kleber Mota – 2017-08-25T23:25:22.247