aboutsummaryrefslogtreecommitdiff
path: root/src/rpcrawtransaction.cpp
Commit message (Collapse)AuthorAgeFilesLines
* Correctly handle missing inputs in signrawtransaction. Fixes #1654.Gregory Maxwell2012-08-061-3/+8
| | | | | | | Signrawtransaction rpc was crashing when some inputs were unknown, and even with that fixed was failing to handle all the known inputs if there were unknown inputs in front of them. This commit instead attempts to fetch inputs one at a time.
* New feature for signrawtransaction: specify signature hash (ALL/NONE/etc)Gavin Andresen2012-07-171-3/+24
|
* Bug fix: sendrawtransaction was not relaying properlyGavin Andresen2012-07-121-10/+23
|
* Use unsigned ints to fix signed/unsigned warningsGavin Andresen2012-07-051-3/+3
|
* Implement raw transaction RPC callsGavin Andresen2012-07-051-0/+470
Implement listunspent / getrawtransaction / createrawtransaction / signrawtransaction, to support creation and signing-on-multiple-device multisignature transactions.