Submitted by tnevler, also found by yixxas, pashov, 0xRobocop, 0xbepresent, Ruhum, Chom, 0xDecorativePineapple, lukris02, Soosh, imare, and yellowBirdy
https://github.com/code-423n4/2022-12-escher/blob/main/src/minters/FixedPrice.sol#L110
https://github.com/code-423n4/2022-12-escher/blob/main/src/minters/OpenEdition.sol#L122
selfdestruct() will not be available after EIP-4758. This EIP will rename the SELFDESTRUCT opcode and replace its functionality. It will no longer destroy code or storage, so, the contract still will be available.
In this case it will break the logic of the project because it will not work as expected:
FixedPrice.sol
OpenEdition.sol
According to EIP-4758:
The architecture should be changed to avoid that problem.
stevennevins (Escher) disagreed with severity and commented:
berndartmueller (judge) commented:
