89 lines
2.4 KiB
JavaScript
89 lines
2.4 KiB
JavaScript
const TxModel = require('../../models/transaction');
|
|
const InputModel = require('../../models/input');
|
|
const OutputModel = require('../../models/output');
|
|
const config = require('../../config');
|
|
const util = require('../../lib/util');
|
|
const logger = require('../logger');
|
|
const db = require('../db');
|
|
|
|
function parse(entry, txs) {
|
|
txs.forEach((tx) => {
|
|
const txJSON = tx.toJSON();
|
|
const txRAW = tx.toRaw();
|
|
|
|
const t = new TxModel({
|
|
hash: txJSON.hash,
|
|
witnessHash: txJSON.witnessHash,
|
|
fee: txJSON.fee,
|
|
rate: txJSON.rate,
|
|
size: txRAW.length,
|
|
ps: txJSON.ps,
|
|
height: entry.height,
|
|
block: util.revHex(entry.hash),
|
|
ts: entry.ts,
|
|
date: txJSON.date,
|
|
index: txJSON.index,
|
|
version: txJSON.version,
|
|
flag: txJSON.flag,
|
|
inputs: tx.inputs.map((input) => {
|
|
const inputJSON = input.toJSON();
|
|
return new InputModel({
|
|
prevout: inputJSON.prevout,
|
|
script: inputJSON.script,
|
|
witness: inputJSON.witness,
|
|
sequence: inputJSON.sequence,
|
|
address: inputJSON.address,
|
|
});
|
|
}),
|
|
outputs: tx.outputs.map((output) => {
|
|
const outputJSON = output.toJSON();
|
|
return new OutputModel({
|
|
address: outputJSON.address,
|
|
script: outputJSON.script,
|
|
value: outputJSON.value,
|
|
});
|
|
}),
|
|
lockTime: txJSON.locktime,
|
|
chain: config.bcoin.network,
|
|
});
|
|
|
|
|
|
t.save((err) => {
|
|
if (err) {
|
|
logger.log('error', err.message);
|
|
}
|
|
|
|
findEmptyInputs();
|
|
});
|
|
});
|
|
}
|
|
|
|
function findEmptyInputs() {
|
|
db.txs.getEmptyInputs(
|
|
(err, txs) => {
|
|
if (err) {
|
|
return logger.log('error',
|
|
`No Empty Inputs found: ${err.err}`);
|
|
}
|
|
// For each tx with unmarked inputs
|
|
return txs.forEach((inputTx) => {
|
|
inputTx.inputs.forEach((input) => {
|
|
const txHash = input.prevout.hash;
|
|
const outIdx = input.prevout.index;
|
|
|
|
return db.txs.getTxById(txHash, (error, tx) => {
|
|
if (error || !tx) {
|
|
return logger.log('error',
|
|
`No Tx found: ${txHash} ${error}`);
|
|
}
|
|
return db.txs.updateInput(inputTx._id, input._id, tx.outputs[outIdx].value, tx.outputs[outIdx].address);
|
|
});
|
|
});
|
|
});
|
|
});
|
|
}
|
|
|
|
module.exports = {
|
|
parse,
|
|
};
|