From 094ff1620e648865ce1c990bbda26a64a2b75f7e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jo=C3=A3o=20Escribano?= Date: Thu, 8 Feb 2018 01:11:51 -0200 Subject: [PATCH] Fix HTMLCOIN syncronization vault types Fixed missing vault types that unables iquidus sync block 6679 and some others --- lib/explorer.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/explorer.js b/lib/explorer.js index 56908e2a6..3c0236a84 100644 --- a/lib/explorer.js +++ b/lib/explorer.js @@ -284,7 +284,7 @@ module.exports = { module.exports.syncLoop(vout.length, function (loop) { var i = loop.iteration(); // make sure vout has an address - if (vout[i].scriptPubKey.type != 'nonstandard' && vout[i].scriptPubKey.type != 'nulldata') { + if (vout[i].scriptPubKey.type != 'nonstandard' && vout[i].scriptPubKey.type != 'nulldata' && vout[i].scriptPubKey.type != 'create' && vout[i].scriptPubKey.type != 'call') { // check if vout address is unique, if so add it array, if not add its amount to existing index //console.log('vout:' + i + ':' + txid); module.exports.is_unique(arr_vout, vout[i].scriptPubKey.addresses[0], function(unique, index) {