Testing feathercoin 0.8.5.x - List of changes to Bitcoin protocol 0.7 to 0.8
-
I’ve been trying to get a handle on what has changed and why in versions 0.7 to 0.8.5 of the Bitcoin protocol. I’ve made a list of functions that have been added or had big changes and therefore may require more testing.
Email Archive: bitcoin-development (read-only)
[url=http://sourceforge.net/mailarchive/forum.php?forum_name=bitcoin-development&max_rows=25&offset=5&style=nested&viewmonth=201309]http://sourceforge.net/mailarchive/forum.php?forum_name=bitcoin-development&max_rows=25&offset=5&style=nested&viewmonth=201309[/url][url=https://en.bitcoin.it/wiki/Original_Bitcoin_client/API_calls_list]https://en.bitcoin.it/wiki/Original_Bitcoin_client/API_calls_list[/url]
0.7
createrawtransaction - Creates a raw transaction spending given inputs.decoderawtransaction - Produces a human-readable JSON object for a raw transaction.
getpeerinfo - Returns data about each connected node
getrawmempool - Returns all transaction ids in memory pool
getrawtransaction - Returns raw transaction representation for given transaction id
listaddressgroupings - Returns all addresses in the wallet and info used for coincontrol.
listunspent - Returns array of unspent transaction inputs in the wallet.
sendrawtransaction - Submits raw transaction (serialized, hex-encoded) to local node and network.
signrawtransaction - Adds signatures to a raw transaction and returns the resulting raw transaction.
0.8
getaddednodeinfo - version 0.8 Returns information about the given added node, or all added nodesimportprivkey - rescan option added
listlockunspent - Returns list of temporarily unspendable outputs
lockunspent - Updates list of temporarily unspendable outputs
0.?
getbestblockhashgetrawchangeaddress
Deprecated 0.7
getblocknumber - Use getblockcount
getmemorypool - Use getblocktemplate
-
Bump, these functions needs comments / testing