diff options
| author | dexX7 <[email protected]> | 2015-03-22 19:07:28 +0100 |
|---|---|---|
| committer | dexX7 <[email protected]> | 2015-05-05 09:40:55 +0200 |
| commit | 8ac2a4e1788426329b842eea7121b8eac7875c76 (patch) | |
| tree | a98c0c25226c4a8191ffbf7760352c6d9a58bf1d /src/chainparams.cpp | |
| parent | Merge pull request #6105 (diff) | |
| download | discoin-8ac2a4e1788426329b842eea7121b8eac7875c76.tar.xz discoin-8ac2a4e1788426329b842eea7121b8eac7875c76.zip | |
RPC: show script verification errors in "signrawtransaction" result
If there are any script verification errors, when using "signrawtransaction", they are shown in the RPC result:
```
// ...
Result:
{
"hex" : "value", (string) The hex-encoded raw transaction with signature(s)
"complete" : true|false, (boolean) If the transaction has a complete set of signatures
"errors" : [ (json array of objects) Script verification errors (if there are any)
{
"txid" : "hash", (string) The hash of the referenced, previous transaction
"vout" : n, (numeric) The index of the output to spent and used as input
"scriptSig" : "hex", (string) The hex-encoded signature script
"sequence" : n, (numeric) Script sequence number
"error" : "text" (string) Verification or signing error related to the input
}
,...
]
}
```
Diffstat (limited to 'src/chainparams.cpp')
0 files changed, 0 insertions, 0 deletions