Add signrawtransaction to btcctl.
This commit is contained in:
parent
ca13333d25
commit
6d739c5a9e
1 changed files with 16 additions and 0 deletions
|
@ -110,6 +110,7 @@ var commandHandlers = map[string]*handlerData{
|
|||
"setgenerate": {1, 1, displayGeneric, []conversionHandler{toBool, toInt}, makeSetGenerate, "<generate> [genproclimit]"},
|
||||
"settxfee": {1, 0, displayGeneric, []conversionHandler{toSatoshi}, makeSetTxFee, "<amount>"},
|
||||
"signmessage": {2, 2, displayGeneric, nil, makeSignMessage, "<address> <message>"},
|
||||
"signrawtransaction": {1, 3, displayGeneric, nil, makeSignRawTransaction, "<hex> [{\"txid\":txid,\"vout\":n,\"scriptPubKey\":hex,\"redeemScript\":hex},...] [<privatekey1>,...] [sighashtype=\"ALL\"]"},
|
||||
"stop": {0, 0, displayGeneric, nil, makeStop, ""},
|
||||
"submitblock": {1, 1, displayGeneric, nil, makeSubmitBlock, "<hexdata> [jsonparametersobject]"},
|
||||
"validateaddress": {1, 0, displayJSONDump, nil, makeValidateAddress, "<address>"},
|
||||
|
@ -768,6 +769,21 @@ func makeSignMessage(args []interface{}) (btcjson.Cmd, error) {
|
|||
args[1].(string))
|
||||
}
|
||||
|
||||
// makeSignRawTransaction generates the cmd structure for signrawtransaction commands.
|
||||
func makeSignRawTransaction(args []interface{}) (btcjson.Cmd, error) {
|
||||
optArgs := make([]interface{}, 0, 3)
|
||||
if len(args) > 1 {
|
||||
optArgs = append(optArgs, args[1])
|
||||
}
|
||||
if len(args) > 2 {
|
||||
optArgs = append(optArgs, args[2])
|
||||
}
|
||||
if len(args) > 3 {
|
||||
optArgs = append(optArgs, args[3])
|
||||
}
|
||||
return btcjson.NewSignRawTransactionCmd("btcctl", args[0].(string), optArgs...)
|
||||
}
|
||||
|
||||
// makeStop generates the cmd structure for stop commands.
|
||||
func makeStop(args []interface{}) (btcjson.Cmd, error) {
|
||||
return btcjson.NewStopCmd("btcctl")
|
||||
|
|
Loading…
Reference in a new issue