Compare commits

...

4 Commits

Author SHA1 Message Date
MoneroOcean 9bc777cf7d Fixed RTM tx parsing 2022-03-11 00:52:39 +00:00
MoneroOcean 66fd45fd11 Fixed RTM tx parsing 2022-03-11 00:47:57 +00:00
MoneroOcean 6c09ba09fd Fixed RTM tx parsing 2022-03-11 00:47:54 +00:00
MoneroOcean 90aac49c77 Fixed RTM tx parsing' 2022-03-11 00:23:54 +00:00
2 changed files with 7 additions and 6 deletions
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "cryptoforknote-util",
"version": "11.2.0",
"version": "11.2.3",
"main": "cryptoforknote-util",
"author": {
"name": "LucasJones",
+6 -5
View File
@@ -1,5 +1,6 @@
const bignum = require('bignum');
const base58 = require('base58-native');
const bignum = require('bignum');
const base58 = require('base58-native');
const bitcoin = require('bitcoinjs-lib');
const diff1 = 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF;
@@ -258,15 +259,15 @@ module.exports.RtmBlockTemplate = function(rpcData, poolAddress) {
// tx input scripts instead of size of script part so not sure how to parse them
// just drop them for now
// example: https://explorer.raptoreum.com/tx/1461d70fa8362b0896e2e9be6312521f2684f22c9b0f9152695f33f67d9f9d3f
rpcData.transactions.forEach(function(tx, i) {
rpcData.transactions.forEach(function(tx) {
if (tx.version != 1) {
try {
bitcoin.Transaction.fromBuffer(Buffer.from(tx.data, 'hex'), true, i == 0);
bitcoin.Transaction.fromBuffer(Buffer.from(tx.data, 'hex'), false, false);
} catch(err) {
console.error("Skip RTM tx due to parse error: " + tx.data);
return; // skip transaction if it is not parsed OK (varint coding seems to be different for RTM)
}
tx.push(tx);
txs.push(tx);
} else {
console.error("Skip RTM v1 tx: " + tx.data);
}