Revert unwanted breaking change in the Clones library (#3456)
Co-authored-by: Francisco Giordano <frangio.1@gmail.com>
This commit is contained in:
@ -1,5 +1,5 @@
|
||||
const { balance, BN, ether, expectRevert, send } = require('@openzeppelin/test-helpers');
|
||||
|
||||
const { computeCreate2Address } = require('../helpers/create2');
|
||||
const { expect } = require('chai');
|
||||
|
||||
const Create2Impl = artifacts.require('Create2Impl');
|
||||
@ -90,12 +90,3 @@ contract('Create2', function (accounts) {
|
||||
});
|
||||
});
|
||||
});
|
||||
|
||||
function computeCreate2Address (saltHex, bytecode, deployer) {
|
||||
return web3.utils.toChecksumAddress(`0x${web3.utils.sha3(`0x${[
|
||||
'ff',
|
||||
deployer,
|
||||
saltHex,
|
||||
web3.utils.soliditySha3(bytecode),
|
||||
].map(x => x.replace(/0x/, '')).join('')}`).slice(-40)}`);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user