We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dbfafe8 commit 916fa80Copy full SHA for 916fa80
lib/transactions.js
@@ -203,7 +203,7 @@ TxController.prototype.transformInvTransaction = function(transaction) {
203
}
204
205
206
- var isRBF = _.any(_.pluck(transaction.inputs, 'sequence'), function(seq) {
+ var isRBF = _.some(_.map(transaction.inputs, 'sequence'), function(seq) {
207
return seq < MAXINT - 1;
208
});
209
0 commit comments