bsv-coinselect
Advanced tools
Comparing version 4.1.0 to 4.1.1
{ | ||
"name": "bsv-coinselect", | ||
"version": "4.1.0", | ||
"version": "4.1.1", | ||
"description": "A transaction input selection module for Bitcoin SV (BSV)", | ||
@@ -5,0 +5,0 @@ "keywords": [ |
@@ -58,4 +58,4 @@ // baseline estimates, used to improve performance | ||
requiredInputs.push(input); | ||
var utxoBytes = utils.inputBytes(input) | ||
var utxoValue = utils.uintOrNaN(input.value) | ||
var utxoBytes = inputBytes(input) | ||
var utxoValue = uintOrNaN(input.value) | ||
bytesAccum += utxoBytes | ||
@@ -62,0 +62,0 @@ inAccum += utxoValue |
16331