diff --git a/lib/transactions.js b/lib/transactions.js index dfff082..91583c3 100644 --- a/lib/transactions.js +++ b/lib/transactions.js @@ -204,7 +204,7 @@ TxController.prototype.transformInvTransaction = function(transaction) { } } - var isRBF = _.any(_.pluck(transaction.inputs, 'sequence'), function(seq) { + var isRBF = _.any(_.map(transaction.inputs, 'sequence'), function(seq) { return seq < MAXINT - 1; }); diff --git a/package.json b/package.json index 295453a..2cd3df0 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "flosight-api", "description": "A Florincoin blockchain REST and web socket API service for Flocore Node.", - "version": "5.0.0-beta.69", + "version": "5.0.0-beta.71", "repository": "git://github.com/bitpay/flosight-api.git", "bugs": { "url": "https://github.com/bitpay/flosight-api/issues" diff --git a/pools.json b/pools.json index 4c4d8ae..0f0bb82 100644 --- a/pools.json +++ b/pools.json @@ -33,5 +33,12 @@ "searchStrings": [ "alexandria autominer pool (testnet)" ] + }, + { + "poolName": "Node Merged Pool", + "url": "https://github.com/UNOMP/node-merged-pool", + "searchStrings": [ + "https://github.com/UNOMP/node-merged-pool" + ] } ]