Skip to content
Merged
Changes from 1 commit
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
4 changes: 2 additions & 2 deletions test/governance/extensions/GovernorNoncesKeyed.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -92,9 +92,9 @@ describe('GovernorNoncesKeyed', function () {
const maskedProposalId = BigInt(this.helper.id) & (2n ** 192n - 1n);

this.getNonce = async address => {
return await (nonceType === 'default'
return nonceType === 'default'
? this.mock.nonces(address)
: this.mock['nonces(address,uint192)'](address, maskedProposalId));
: this.mock['nonces(address,uint192)'](address, maskedProposalId);
};
});

Expand Down
Loading