diff --git a/src/redux/sagas/motions/revealVoteMotion.ts b/src/redux/sagas/motions/revealVoteMotion.ts index fdabe245364..760504af679 100644 --- a/src/redux/sagas/motions/revealVoteMotion.ts +++ b/src/redux/sagas/motions/revealVoteMotion.ts @@ -103,6 +103,10 @@ function* revealVoteMotion({ } catch (error) { // Same as above. Silent error } + + // eslint-disable-next-line no-console + console.log('REVEAL for', sideVoted, { signature, salt, message }); + if (sideVoted !== undefined) { const { revealVoteMotionTransaction } = yield createTransactionChannels( meta.id, diff --git a/src/redux/sagas/motions/voteMotion.ts b/src/redux/sagas/motions/voteMotion.ts index 27478ef1319..6e6e81869e1 100644 --- a/src/redux/sagas/motions/voteMotion.ts +++ b/src/redux/sagas/motions/voteMotion.ts @@ -66,6 +66,9 @@ function* voteMotion({ [utils.keccak256(signature), vote], ); + // eslint-disable-next-line no-console + console.log('VOTE for', vote, { signature, hash, message }); + const { voteMotionTransaction } = yield createTransactionChannels(meta.id, [ 'voteMotionTransaction', ]);