Fix warnings (#1606)
* Bump required compiler version to 0.5.2. * Fix shadowed variable warning in ERC20Migrator. * Rename Counter to Counters. * Add dummy state variable to SafeERC20Helper. * Update changelog entry. * Fix CountersImpl name. * Improve changelog entry.
This commit is contained in:
@ -1,14 +1,14 @@
|
||||
const { BN } = require('openzeppelin-test-helpers');
|
||||
|
||||
const CounterImpl = artifacts.require('CounterImpl');
|
||||
const CountersImpl = artifacts.require('CountersImpl');
|
||||
|
||||
const EXPECTED = [new BN(1), new BN(2), new BN(3), new BN(4)];
|
||||
const KEY1 = web3.utils.sha3('key1');
|
||||
const KEY2 = web3.utils.sha3('key2');
|
||||
|
||||
contract('Counter', function ([_, owner]) {
|
||||
contract('Counters', function ([_, owner]) {
|
||||
beforeEach(async function () {
|
||||
this.mock = await CounterImpl.new({ from: owner });
|
||||
this.mock = await CountersImpl.new({ from: owner });
|
||||
});
|
||||
|
||||
context('custom key', async function () {
|
||||
Reference in New Issue
Block a user