|
|
@ -334,6 +334,7 @@ UniValue createrawtransaction(const UniValue& params, bool fHelp)
|
|
|
|
" {\n"
|
|
|
|
" {\n"
|
|
|
|
" \"txid\":\"id\", (string, required) The transaction id\n"
|
|
|
|
" \"txid\":\"id\", (string, required) The transaction id\n"
|
|
|
|
" \"vout\":n (numeric, required) The output number\n"
|
|
|
|
" \"vout\":n (numeric, required) The output number\n"
|
|
|
|
|
|
|
|
" \"sequence\":n (numeric, optional) The sequence number\n"
|
|
|
|
" }\n"
|
|
|
|
" }\n"
|
|
|
|
" ,...\n"
|
|
|
|
" ,...\n"
|
|
|
|
" ]\n"
|
|
|
|
" ]\n"
|
|
|
@ -384,6 +385,12 @@ UniValue createrawtransaction(const UniValue& params, bool fHelp)
|
|
|
|
throw JSONRPCError(RPC_INVALID_PARAMETER, "Invalid parameter, vout must be positive");
|
|
|
|
throw JSONRPCError(RPC_INVALID_PARAMETER, "Invalid parameter, vout must be positive");
|
|
|
|
|
|
|
|
|
|
|
|
uint32_t nSequence = (rawTx.nLockTime ? std::numeric_limits<uint32_t>::max() - 1 : std::numeric_limits<uint32_t>::max());
|
|
|
|
uint32_t nSequence = (rawTx.nLockTime ? std::numeric_limits<uint32_t>::max() - 1 : std::numeric_limits<uint32_t>::max());
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// set the sequence number if passed in the parameters object
|
|
|
|
|
|
|
|
const UniValue& sequenceObj = find_value(o, "sequence");
|
|
|
|
|
|
|
|
if (sequenceObj.isNum())
|
|
|
|
|
|
|
|
nSequence = sequenceObj.get_int();
|
|
|
|
|
|
|
|
|
|
|
|
CTxIn in(COutPoint(txid, nOutput), CScript(), nSequence);
|
|
|
|
CTxIn in(COutPoint(txid, nOutput), CScript(), nSequence);
|
|
|
|
|
|
|
|
|
|
|
|
rawTx.vin.push_back(in);
|
|
|
|
rawTx.vin.push_back(in);
|
|
|
|