Commit 21948fbd authored by Michael Amadi's avatar Michael Amadi Committed by GitHub

undo deploy variation cgt code deletion (#13664)

parent 2dddfdb9
......@@ -3,6 +3,7 @@ pragma solidity 0.8.15;
// Testing utilities
import { CommonTest } from "test/setup/CommonTest.sol";
import { ERC20 } from "@openzeppelin/contracts/token/ERC20/ERC20.sol";
error CustomGasTokenNotSupported();
......@@ -15,7 +16,10 @@ contract DeployVariations_Test is CommonTest {
// Enable features which should be possible to enable or disable regardless of other options.
function enableAddOns(bool _enableCGT, bool _enableAltDa) public {
if (_enableCGT) {
revert CustomGasTokenNotSupported();
if (true) revert CustomGasTokenNotSupported();
ERC20 token = new ERC20("Silly", "SIL");
super.enableCustomGasToken(address(token));
}
if (_enableAltDa) {
super.enableAltDA();
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment