|
|
|
@ -151,11 +151,13 @@ void ScriptPubKeyToUniv(const CScript& scriptPubKey,
@@ -151,11 +151,13 @@ void ScriptPubKeyToUniv(const CScript& scriptPubKey,
|
|
|
|
|
void TxToUniv(const CTransaction& tx, const uint256& hashBlock, UniValue& entry) |
|
|
|
|
{ |
|
|
|
|
entry.pushKV("txid", tx.GetHash().GetHex()); |
|
|
|
|
entry.pushKV("hash", tx.GetWitnessHash().GetHex()); |
|
|
|
|
entry.pushKV("version", tx.nVersion); |
|
|
|
|
entry.pushKV("locktime", (int64_t)tx.nLockTime); |
|
|
|
|
|
|
|
|
|
UniValue vin(UniValue::VARR); |
|
|
|
|
BOOST_FOREACH(const CTxIn& txin, tx.vin) { |
|
|
|
|
for (unsigned int i = 0; i < tx.vin.size(); i++) { |
|
|
|
|
const CTxIn& txin = tx.vin[i]; |
|
|
|
|
UniValue in(UniValue::VOBJ); |
|
|
|
|
if (tx.IsCoinBase()) |
|
|
|
|
in.pushKV("coinbase", HexStr(txin.scriptSig.begin(), txin.scriptSig.end())); |
|
|
|
@ -166,6 +168,13 @@ void TxToUniv(const CTransaction& tx, const uint256& hashBlock, UniValue& entry)
@@ -166,6 +168,13 @@ void TxToUniv(const CTransaction& tx, const uint256& hashBlock, UniValue& entry)
|
|
|
|
|
o.pushKV("asm", ScriptToAsmStr(txin.scriptSig, true)); |
|
|
|
|
o.pushKV("hex", HexStr(txin.scriptSig.begin(), txin.scriptSig.end())); |
|
|
|
|
in.pushKV("scriptSig", o); |
|
|
|
|
if (!tx.wit.IsNull() && i < tx.wit.vtxinwit.size() && !tx.wit.vtxinwit[i].IsNull()) { |
|
|
|
|
UniValue txinwitness(UniValue::VARR); |
|
|
|
|
for (const auto& item : tx.wit.vtxinwit[i].scriptWitness.stack) { |
|
|
|
|
txinwitness.push_back(HexStr(item.begin(), item.end())); |
|
|
|
|
} |
|
|
|
|
in.pushKV("txinwitness", txinwitness); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
in.pushKV("sequence", (int64_t)txin.nSequence); |
|
|
|
|
vin.push_back(in); |
|
|
|
|