Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion lib/voting_session.js
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ export default class VotingSession extends Session {
out.toString('base64') +
'\n-----END SHAMIR KEY PART-----';
this.cli.log('Your key part is:');
this.cli.log(keyPart);
console.log(keyPart); // Using `console.log` so this gets output to stdout, not stderr.
const body = 'I would like to close this vote, and for this effect, I\'m revealing my ' +
`key part:\n\n${'```'}\n${keyPart}\n${'```'}\n`;
if (this.postComment) {
Expand Down
Loading