Skip to content

Commit

Permalink
Debug: vote/reveal production signatures
Browse files Browse the repository at this point in the history
  • Loading branch information
rdig committed Apr 3, 2024
1 parent 6a82efa commit 65b4118
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/redux/sagas/motions/revealVoteMotion.ts
Original file line number Diff line number Diff line change
Expand Up @@ -103,6 +103,8 @@ function* revealVoteMotion({
} catch (error) {
// Same as above. Silent error
}
console.log('REVEAL for', sideVoted, { signature, salt, message });

Check failure on line 106 in src/redux/sagas/motions/revealVoteMotion.ts

View workflow job for this annotation

GitHub Actions / build

Unexpected console statement

if (sideVoted !== undefined) {
const { revealVoteMotionTransaction } = yield createTransactionChannels(
meta.id,
Expand Down
2 changes: 2 additions & 0 deletions src/redux/sagas/motions/voteMotion.ts
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,8 @@ function* voteMotion({
[utils.keccak256(signature), vote],
);

console.log('VOTE for', vote, { signature, hash, message });

Check failure on line 69 in src/redux/sagas/motions/voteMotion.ts

View workflow job for this annotation

GitHub Actions / build

Unexpected console statement

const { voteMotionTransaction } = yield createTransactionChannels(meta.id, [
'voteMotionTransaction',
]);
Expand Down

0 comments on commit 65b4118

Please sign in to comment.