mirror of
https://gitlab.com/pulsechaincom/erigon-pulse.git
synced 2024-12-28 22:57:16 +00:00
3287b44c2e
* Bad unwind of recreation of CREATE2 contract - unit test and potential fix * Fix unit test * Fix lint * Fix lint * Fixup hack Co-authored-by: Alexey Sharp <alexeysharp@Alexeys-iMac.local>
39 lines
1.1 KiB
Solidity
39 lines
1.1 KiB
Solidity
pragma solidity >=0.6.0;
|
|
|
|
// solc --allow-paths ., --abi --bin --overwrite --optimize -o core/state/contracts/build core/state/contracts/revive2.sol
|
|
// ./build/bin/abigen -abi core/state/contracts/build/Revive2.abi -bin core/state/contracts/build/Revive2.bin -pkg contracts -type revive2 -out core/state/contracts/gen_revive2.go
|
|
// ./build/bin/abigen -abi core/state/contracts/build/Phoenix.abi -bin core/state/contracts/build/Phoenix.bin -pkg contracts -type phoenix -out core/state/contracts/gen_phoenix.go
|
|
contract Revive2 {
|
|
|
|
constructor() {
|
|
}
|
|
|
|
event DeployEvent (Phoenix d);
|
|
|
|
/* Deploys self-destructing contract with given salt and emits DeployEvent with the address of the created contract */
|
|
function deploy(bytes32 salt) public {
|
|
Phoenix d;
|
|
d = new Phoenix{salt: salt}();
|
|
emit DeployEvent(d);
|
|
}
|
|
}
|
|
|
|
contract Phoenix {
|
|
uint256 d;
|
|
|
|
function increment() public {
|
|
d++;
|
|
}
|
|
|
|
constructor() {
|
|
}
|
|
|
|
|
|
receive() external payable {
|
|
}
|
|
|
|
function die() public {
|
|
selfdestruct(address(0));
|
|
}
|
|
}
|