Revert unwanted breaking change in the Clones library (#3456)

Co-authored-by: Francisco Giordano <frangio.1@gmail.com>
This commit is contained in:
Hadrien Croubois
2022-06-06 22:41:48 +02:00
committed by GitHub
parent 54ce38c2e5
commit 051cc9e446
5 changed files with 43 additions and 26 deletions

View File

@ -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)}`);
}