Skip to content

Commit f0cffe2

Browse files
committed
chore: nit
1 parent b4c0cfe commit f0cffe2

File tree

2 files changed

+1
-4
lines changed

2 files changed

+1
-4
lines changed

contracts/foundry.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ libs = ['node_modules', 'foundry-lib']
1111
bytecode_hash = "none"
1212
ffi = false
1313
allow_internal_expect_revert = true
14+
1415
# default is zero, using a non-zero amount enables us to test e.g. billing based on gas prices.
1516
gas_price = 1
1617
block_timestamp = 1234567890
@@ -31,7 +32,6 @@ optimizer_runs = 800
3132
evm_version = 'paris'
3233
fs_permissions = [{ access = "read", path = "./script/config.json" }]
3334

34-
3535
[profile.functions]
3636
solc_version = '0.8.19'
3737
src = 'src/v0.8/functions/dev/v1_X'

contracts/script/DeployUpgradableBurnMintTokenPool.s.sol

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@ pragma solidity ^0.8.0;
33

44
import {Script} from "forge-std/Script.sol";
55
import {console2 as console} from "forge-std/console2.sol";
6-
import {stdJson} from "forge-std/StdJson.sol";
76

87
import {TransparentUpgradeableProxy, ProxyAdmin} from "@oz/contracts/proxy/transparent/TransparentUpgradeableProxy.sol";
98
import {UpgradeableBurnMintTokenPool} from "./../src/v0.8/ccip/pools/GHO/UpgradeableBurnMintTokenPool.sol";
@@ -22,8 +21,6 @@ struct Config {
2221
/// Pre-requisite: add parameters to config.json, the with key as `chainId` of the target network.
2322
/// Usage: FOUNDRY_PROFILE=ccip forge script DeployUpgradableBurnMintTokenPool --rpc-url <RPC_URL> --private-key <PRIVATE_KEY> --broadcast --verify --etherscan-api-key <ETHERSCAN_API_KEY>
2423
contract DeployUpgradableBurnMintTokenPool is Script {
25-
using stdJson for string;
26-
2724
function run() external {
2825
Config memory config = _parseConfig();
2926

0 commit comments

Comments
 (0)