Skip to content

Commit ad4acb9

Browse files
committed
make var local
1 parent b1cf13d commit ad4acb9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

assets_js_bitrequest_rpcs.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -156,7 +156,7 @@ function fetch_electrum_nodes(currency, node_url, predefined_nodes, custom_nodes
156156
list_length = result.length;
157157
let done = false;
158158
if (list_length && is_array(result)) {
159-
short_list = (list_length > 75) ? result.slice(0, 75) : result;
159+
const short_list = (list_length > 75) ? result.slice(0, 75) : result;
160160
$.each(short_list, function(node_id, nd) {
161161
const url = nd[1] || nd[0],
162162
filter_ips = is_valid_ipv4(url);

0 commit comments

Comments
 (0)