|
|
|
@ -37,8 +37,7 @@ void ScriptPubKeyToJSON(const CScript& scriptPubKey, Object& out, bool fIncludeH
@@ -37,8 +37,7 @@ void ScriptPubKeyToJSON(const CScript& scriptPubKey, Object& out, bool fIncludeH
|
|
|
|
|
if (fIncludeHex) |
|
|
|
|
out.push_back(Pair("hex", HexStr(scriptPubKey.begin(), scriptPubKey.end()))); |
|
|
|
|
|
|
|
|
|
if (!ExtractDestinations(scriptPubKey, type, addresses, nRequired)) |
|
|
|
|
{ |
|
|
|
|
if (!ExtractDestinations(scriptPubKey, type, addresses, nRequired)) { |
|
|
|
|
out.push_back(Pair("type", GetTxnOutputType(type))); |
|
|
|
|
return; |
|
|
|
|
} |
|
|
|
@ -58,13 +57,11 @@ void TxToJSON(const CTransaction& tx, const uint256 hashBlock, Object& entry)
@@ -58,13 +57,11 @@ void TxToJSON(const CTransaction& tx, const uint256 hashBlock, Object& entry)
|
|
|
|
|
entry.push_back(Pair("version", tx.nVersion)); |
|
|
|
|
entry.push_back(Pair("locktime", (int64_t)tx.nLockTime)); |
|
|
|
|
Array vin; |
|
|
|
|
BOOST_FOREACH(const CTxIn& txin, tx.vin) |
|
|
|
|
{ |
|
|
|
|
BOOST_FOREACH(const CTxIn& txin, tx.vin) { |
|
|
|
|
Object in; |
|
|
|
|
if (tx.IsCoinBase()) |
|
|
|
|
in.push_back(Pair("coinbase", HexStr(txin.scriptSig.begin(), txin.scriptSig.end()))); |
|
|
|
|
else |
|
|
|
|
{ |
|
|
|
|
else { |
|
|
|
|
in.push_back(Pair("txid", txin.prevout.hash.GetHex())); |
|
|
|
|
in.push_back(Pair("vout", (int64_t)txin.prevout.n)); |
|
|
|
|
Object o; |
|
|
|
@ -77,8 +74,7 @@ void TxToJSON(const CTransaction& tx, const uint256 hashBlock, Object& entry)
@@ -77,8 +74,7 @@ void TxToJSON(const CTransaction& tx, const uint256 hashBlock, Object& entry)
|
|
|
|
|
} |
|
|
|
|
entry.push_back(Pair("vin", vin)); |
|
|
|
|
Array vout; |
|
|
|
|
for (unsigned int i = 0; i < tx.vout.size(); i++) |
|
|
|
|
{ |
|
|
|
|
for (unsigned int i = 0; i < tx.vout.size(); i++) { |
|
|
|
|
const CTxOut& txout = tx.vout[i]; |
|
|
|
|
Object out; |
|
|
|
|
out.push_back(Pair("value", ValueFromAmount(txout.nValue))); |
|
|
|
@ -90,15 +86,12 @@ void TxToJSON(const CTransaction& tx, const uint256 hashBlock, Object& entry)
@@ -90,15 +86,12 @@ void TxToJSON(const CTransaction& tx, const uint256 hashBlock, Object& entry)
|
|
|
|
|
} |
|
|
|
|
entry.push_back(Pair("vout", vout)); |
|
|
|
|
|
|
|
|
|
if (hashBlock != 0) |
|
|
|
|
{ |
|
|
|
|
if (hashBlock != 0) { |
|
|
|
|
entry.push_back(Pair("blockhash", hashBlock.GetHex())); |
|
|
|
|
map<uint256, CBlockIndex*>::iterator mi = mapBlockIndex.find(hashBlock); |
|
|
|
|
if (mi != mapBlockIndex.end() && (*mi).second) |
|
|
|
|
{ |
|
|
|
|
if (mi != mapBlockIndex.end() && (*mi).second) { |
|
|
|
|
CBlockIndex* pindex = (*mi).second; |
|
|
|
|
if (chainActive.Contains(pindex)) |
|
|
|
|
{ |
|
|
|
|
if (chainActive.Contains(pindex)) { |
|
|
|
|
entry.push_back(Pair("confirmations", 1 + chainActive.Height() - pindex->nHeight)); |
|
|
|
|
entry.push_back(Pair("time", pindex->GetBlockTime())); |
|
|
|
|
entry.push_back(Pair("blocktime", pindex->GetBlockTime())); |
|
|
|
@ -244,11 +237,9 @@ Value listunspent(const Array& params, bool fHelp)
@@ -244,11 +237,9 @@ Value listunspent(const Array& params, bool fHelp)
|
|
|
|
|
nMaxDepth = params[1].get_int(); |
|
|
|
|
|
|
|
|
|
set<CBitcoinAddress> setAddress; |
|
|
|
|
if (params.size() > 2) |
|
|
|
|
{ |
|
|
|
|
if (params.size() > 2) { |
|
|
|
|
Array inputs = params[2].get_array(); |
|
|
|
|
BOOST_FOREACH(Value& input, inputs) |
|
|
|
|
{ |
|
|
|
|
BOOST_FOREACH(Value& input, inputs) { |
|
|
|
|
CBitcoinAddress address(input.get_str()); |
|
|
|
|
if (!address.IsValid()) |
|
|
|
|
throw JSONRPCError(RPC_INVALID_ADDRESS_OR_KEY, string("Invalid Bitcoin address: ")+input.get_str()); |
|
|
|
@ -262,13 +253,11 @@ Value listunspent(const Array& params, bool fHelp)
@@ -262,13 +253,11 @@ Value listunspent(const Array& params, bool fHelp)
|
|
|
|
|
vector<COutput> vecOutputs; |
|
|
|
|
assert(pwalletMain != NULL); |
|
|
|
|
pwalletMain->AvailableCoins(vecOutputs, false); |
|
|
|
|
BOOST_FOREACH(const COutput& out, vecOutputs) |
|
|
|
|
{ |
|
|
|
|
BOOST_FOREACH(const COutput& out, vecOutputs) { |
|
|
|
|
if (out.nDepth < nMinDepth || out.nDepth > nMaxDepth) |
|
|
|
|
continue; |
|
|
|
|
|
|
|
|
|
if (setAddress.size()) |
|
|
|
|
{ |
|
|
|
|
if (setAddress.size()) { |
|
|
|
|
CTxDestination address; |
|
|
|
|
if (!ExtractDestination(out.tx->vout[out.i].scriptPubKey, address)) |
|
|
|
|
continue; |
|
|
|
@ -283,18 +272,15 @@ Value listunspent(const Array& params, bool fHelp)
@@ -283,18 +272,15 @@ Value listunspent(const Array& params, bool fHelp)
|
|
|
|
|
entry.push_back(Pair("txid", out.tx->GetHash().GetHex())); |
|
|
|
|
entry.push_back(Pair("vout", out.i)); |
|
|
|
|
CTxDestination address; |
|
|
|
|
if (ExtractDestination(out.tx->vout[out.i].scriptPubKey, address)) |
|
|
|
|
{ |
|
|
|
|
if (ExtractDestination(out.tx->vout[out.i].scriptPubKey, address)) { |
|
|
|
|
entry.push_back(Pair("address", CBitcoinAddress(address).ToString())); |
|
|
|
|
if (pwalletMain->mapAddressBook.count(address)) |
|
|
|
|
entry.push_back(Pair("account", pwalletMain->mapAddressBook[address].name)); |
|
|
|
|
} |
|
|
|
|
entry.push_back(Pair("scriptPubKey", HexStr(pk.begin(), pk.end()))); |
|
|
|
|
if (pk.IsPayToScriptHash()) |
|
|
|
|
{ |
|
|
|
|
if (pk.IsPayToScriptHash()) { |
|
|
|
|
CTxDestination address; |
|
|
|
|
if (ExtractDestination(pk, address)) |
|
|
|
|
{ |
|
|
|
|
if (ExtractDestination(pk, address)) { |
|
|
|
|
const CScriptID& hash = boost::get<const CScriptID&>(address); |
|
|
|
|
CScript redeemScript; |
|
|
|
|
if (pwalletMain->GetCScript(hash, redeemScript)) |
|
|
|
@ -351,8 +337,7 @@ Value createrawtransaction(const Array& params, bool fHelp)
@@ -351,8 +337,7 @@ Value createrawtransaction(const Array& params, bool fHelp)
|
|
|
|
|
|
|
|
|
|
CMutableTransaction rawTx; |
|
|
|
|
|
|
|
|
|
BOOST_FOREACH(const Value& input, inputs) |
|
|
|
|
{ |
|
|
|
|
BOOST_FOREACH(const Value& input, inputs) { |
|
|
|
|
const Object& o = input.get_obj(); |
|
|
|
|
|
|
|
|
|
uint256 txid = ParseHashO(o, "txid"); |
|
|
|
@ -369,8 +354,7 @@ Value createrawtransaction(const Array& params, bool fHelp)
@@ -369,8 +354,7 @@ Value createrawtransaction(const Array& params, bool fHelp)
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
set<CBitcoinAddress> setAddress; |
|
|
|
|
BOOST_FOREACH(const Pair& s, sendTo) |
|
|
|
|
{ |
|
|
|
|
BOOST_FOREACH(const Pair& s, sendTo) { |
|
|
|
|
CBitcoinAddress address(s.name_); |
|
|
|
|
if (!address.IsValid()) |
|
|
|
|
throw JSONRPCError(RPC_INVALID_ADDRESS_OR_KEY, string("Invalid Bitcoin address: ")+s.name_); |
|
|
|
@ -550,8 +534,7 @@ Value signrawtransaction(const Array& params, bool fHelp)
@@ -550,8 +534,7 @@ Value signrawtransaction(const Array& params, bool fHelp)
|
|
|
|
|
vector<unsigned char> txData(ParseHexV(params[0], "argument 1")); |
|
|
|
|
CDataStream ssData(txData, SER_NETWORK, PROTOCOL_VERSION); |
|
|
|
|
vector<CMutableTransaction> txVariants; |
|
|
|
|
while (!ssData.empty()) |
|
|
|
|
{ |
|
|
|
|
while (!ssData.empty()) { |
|
|
|
|
try { |
|
|
|
|
CMutableTransaction tx; |
|
|
|
|
ssData >> tx; |
|
|
|
@ -590,12 +573,10 @@ Value signrawtransaction(const Array& params, bool fHelp)
@@ -590,12 +573,10 @@ Value signrawtransaction(const Array& params, bool fHelp)
|
|
|
|
|
|
|
|
|
|
bool fGivenKeys = false; |
|
|
|
|
CBasicKeyStore tempKeystore; |
|
|
|
|
if (params.size() > 2 && params[2].type() != null_type) |
|
|
|
|
{ |
|
|
|
|
if (params.size() > 2 && params[2].type() != null_type) { |
|
|
|
|
fGivenKeys = true; |
|
|
|
|
Array keys = params[2].get_array(); |
|
|
|
|
BOOST_FOREACH(Value k, keys) |
|
|
|
|
{ |
|
|
|
|
BOOST_FOREACH(Value k, keys) { |
|
|
|
|
CBitcoinSecret vchSecret; |
|
|
|
|
bool fGood = vchSecret.SetString(k.get_str()); |
|
|
|
|
if (!fGood) |
|
|
|
@ -610,11 +591,9 @@ Value signrawtransaction(const Array& params, bool fHelp)
@@ -610,11 +591,9 @@ Value signrawtransaction(const Array& params, bool fHelp)
|
|
|
|
|
#endif |
|
|
|
|
|
|
|
|
|
// Add previous txouts given in the RPC call:
|
|
|
|
|
if (params.size() > 1 && params[1].type() != null_type) |
|
|
|
|
{ |
|
|
|
|
if (params.size() > 1 && params[1].type() != null_type) { |
|
|
|
|
Array prevTxs = params[1].get_array(); |
|
|
|
|
BOOST_FOREACH(Value& p, prevTxs) |
|
|
|
|
{ |
|
|
|
|
BOOST_FOREACH(Value& p, prevTxs) { |
|
|
|
|
if (p.type() != obj_type) |
|
|
|
|
throw JSONRPCError(RPC_DESERIALIZATION_ERROR, "expected object with {\"txid'\",\"vout\",\"scriptPubKey\"}"); |
|
|
|
|
|
|
|
|
@ -649,12 +628,10 @@ Value signrawtransaction(const Array& params, bool fHelp)
@@ -649,12 +628,10 @@ Value signrawtransaction(const Array& params, bool fHelp)
|
|
|
|
|
|
|
|
|
|
// if redeemScript given and not using the local wallet (private keys
|
|
|
|
|
// given), add redeemScript to the tempKeystore so it can be signed:
|
|
|
|
|
if (fGivenKeys && scriptPubKey.IsPayToScriptHash()) |
|
|
|
|
{ |
|
|
|
|
if (fGivenKeys && scriptPubKey.IsPayToScriptHash()) { |
|
|
|
|
RPCTypeCheck(prevOut, map_list_of("txid", str_type)("vout", int_type)("scriptPubKey", str_type)("redeemScript",str_type)); |
|
|
|
|
Value v = find_value(prevOut, "redeemScript"); |
|
|
|
|
if (!(v == Value::null)) |
|
|
|
|
{ |
|
|
|
|
if (!(v == Value::null)) { |
|
|
|
|
vector<unsigned char> rsData(ParseHexV(v, "redeemScript")); |
|
|
|
|
CScript redeemScript(rsData.begin(), rsData.end()); |
|
|
|
|
tempKeystore.AddCScript(redeemScript); |
|
|
|
@ -670,8 +647,7 @@ Value signrawtransaction(const Array& params, bool fHelp)
@@ -670,8 +647,7 @@ Value signrawtransaction(const Array& params, bool fHelp)
|
|
|
|
|
#endif |
|
|
|
|
|
|
|
|
|
int nHashType = SIGHASH_ALL; |
|
|
|
|
if (params.size() > 3 && params[3].type() != null_type) |
|
|
|
|
{ |
|
|
|
|
if (params.size() > 3 && params[3].type() != null_type) { |
|
|
|
|
static map<string, int> mapSigHashValues = |
|
|
|
|
boost::assign::map_list_of |
|
|
|
|
(string("ALL"), int(SIGHASH_ALL)) |
|
|
|
@ -691,12 +667,10 @@ Value signrawtransaction(const Array& params, bool fHelp)
@@ -691,12 +667,10 @@ Value signrawtransaction(const Array& params, bool fHelp)
|
|
|
|
|
bool fHashSingle = ((nHashType & ~SIGHASH_ANYONECANPAY) == SIGHASH_SINGLE); |
|
|
|
|
|
|
|
|
|
// Sign what we can:
|
|
|
|
|
for (unsigned int i = 0; i < mergedTx.vin.size(); i++) |
|
|
|
|
{ |
|
|
|
|
for (unsigned int i = 0; i < mergedTx.vin.size(); i++) { |
|
|
|
|
CTxIn& txin = mergedTx.vin[i]; |
|
|
|
|
CCoins coins; |
|
|
|
|
if (!view.GetCoins(txin.prevout.hash, coins) || !coins.IsAvailable(txin.prevout.n)) |
|
|
|
|
{ |
|
|
|
|
if (!view.GetCoins(txin.prevout.hash, coins) || !coins.IsAvailable(txin.prevout.n)) { |
|
|
|
|
fComplete = false; |
|
|
|
|
continue; |
|
|
|
|
} |
|
|
|
@ -708,8 +682,7 @@ Value signrawtransaction(const Array& params, bool fHelp)
@@ -708,8 +682,7 @@ Value signrawtransaction(const Array& params, bool fHelp)
|
|
|
|
|
SignSignature(keystore, prevPubKey, mergedTx, i, nHashType); |
|
|
|
|
|
|
|
|
|
// ... and merge in other signatures:
|
|
|
|
|
BOOST_FOREACH(const CMutableTransaction& txv, txVariants) |
|
|
|
|
{ |
|
|
|
|
BOOST_FOREACH(const CMutableTransaction& txv, txVariants) { |
|
|
|
|
txin.scriptSig = CombineSignatures(prevPubKey, mergedTx, i, txin.scriptSig, txv.vin[i].scriptSig); |
|
|
|
|
} |
|
|
|
|
if (!VerifyScript(txin.scriptSig, prevPubKey, mergedTx, i, STANDARD_SCRIPT_VERIFY_FLAGS, 0)) |
|
|
|
|