We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a7d21f7 commit 7aaae02Copy full SHA for 7aaae02
lib/voting_session.js
@@ -111,7 +111,7 @@ export default class VotingSession extends Session {
111
out.toString('base64') +
112
'\n-----END SHAMIR KEY PART-----';
113
this.cli.log('Your key part is:');
114
- this.cli.log(keyPart);
+ console.log(keyPart); // Using `console.log` so this gets output to stdout, not stderr.
115
const body = 'I would like to close this vote, and for this effect, I\'m revealing my ' +
116
`key part:\n\n${'```'}\n${keyPart}\n${'```'}\n`;
117
if (this.postComment) {
0 commit comments