Skip to content

Commit

Permalink
Minor fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
tka85 committed Feb 12, 2020
1 parent 848402b commit aeb5bc5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion example/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ function recover(groupShares, pass) {
}

function printShares(shares) {
neededShares.forEach((s, i) => console.log(`\t${i + 1}) ${s}`));
shares.forEach((s, i) => console.log(`\t${i + 1}) ${s}`));
}

/**
Expand Down
2 changes: 1 addition & 1 deletion index.js
Original file line number Diff line number Diff line change
@@ -1 +1 @@
module.exports = require('./src/slip39');
module.exports = require('./src/slip39');

0 comments on commit aeb5bc5

Please sign in to comment.