Remove unused variables in tests (#3852)
This commit is contained in:
@ -2,7 +2,7 @@
|
||||
|
||||
const { BN, constants, expectEvent, expectRevert, time } = require('@openzeppelin/test-helpers');
|
||||
const { expect } = require('chai');
|
||||
const { MAX_UINT256, ZERO_ADDRESS, ZERO_BYTES32 } = constants;
|
||||
const { MAX_UINT256, ZERO_ADDRESS } = constants;
|
||||
|
||||
const { fromRpcSig } = require('ethereumjs-util');
|
||||
const ethSigUtil = require('eth-sig-util');
|
||||
@ -20,7 +20,7 @@ const Delegation = [
|
||||
];
|
||||
|
||||
contract('ERC20VotesComp', function (accounts) {
|
||||
const [ holder, recipient, holderDelegatee, recipientDelegatee, other1, other2 ] = accounts;
|
||||
const [ holder, recipient, holderDelegatee, other1, other2 ] = accounts;
|
||||
|
||||
const name = 'My Token';
|
||||
const symbol = 'MTKN';
|
||||
|
||||
Reference in New Issue
Block a user