Skip to content

Commit

Permalink
eslint fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
vsubhuman committed Nov 18, 2023
1 parent 91435f1 commit 12da382
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/yoroi-extension/chrome/extension/connector/api.js
Original file line number Diff line number Diff line change
Expand Up @@ -682,8 +682,8 @@ function getCertificatesRequiredSignKeys(
const poolRegCert = cert.as_pool_registration();
if (poolRegCert) {
const hashes = poolRegCert.pool_params().pool_owners();
for (let i = 0; i < hashes.len(); i++) {
result.add(hashes.get(i).to_hex());
for (let j = 0; j < hashes.len(); j++) {
result.add(hashes.get(j).to_hex());
}
continue;
}
Expand Down

0 comments on commit 12da382

Please sign in to comment.