Skip to content

Commit

Permalink
remove unused variable
Browse files Browse the repository at this point in the history
  • Loading branch information
lenondupe committed Jun 1, 2018
1 parent ac26fde commit 57edf61
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/hw-app-str/src/Str.js
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ export default class Str {
let verifyMsg = Buffer.from("via lumina", "ascii");
apdus.push(Buffer.concat([buffer, verifyMsg]));
let keepAlive = false;
return foreach(apdus, (data, i) =>
return foreach(apdus, (data) =>
this.transport
.send(
CLA,
Expand Down Expand Up @@ -269,7 +269,7 @@ export default class Str {
});
apdus.push(Buffer.concat([buffer, hash]));
let keepAlive = false;
return foreach(apdus, (data, i) =>
return foreach(apdus, (data) =>
this.transport
.send(
CLA,
Expand Down

0 comments on commit 57edf61

Please sign in to comment.