From 32f89346c3587ad47572ae2bab0542931d00780a Mon Sep 17 00:00:00 2001 From: Chris Troutner Date: Sat, 13 Feb 2021 14:38:37 -0800 Subject: [PATCH] linting --- src/utxo.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/utxo.js b/src/utxo.js index 73d4e92..40b233c 100644 --- a/src/utxo.js +++ b/src/utxo.js @@ -289,7 +289,7 @@ class UTXO { throw new Error('utxos input to findBiggestUtxo() must be an array') } - for (var i = 0; i < utxos.length; i++) { + for (let i = 0; i < utxos.length; i++) { const thisUtxo = utxos[i] // Give Elecrumx utxos a satoshis property.