From a3ffcfaacd88130b214e82e15e5277e8be7063b9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tom=C3=A1s=20Gr=C3=BCner?= <47506558+MegaRedHand@users.noreply.github.com> Date: Tue, 19 Nov 2024 15:03:17 -0300 Subject: [PATCH] chore: fix typo in contract name Because having the contract and file names differ in casing on a single letter is prone to errors. --- contracts/script/DeployEigenLayerCore.s.sol | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/contracts/script/DeployEigenLayerCore.s.sol b/contracts/script/DeployEigenLayerCore.s.sol index 6e40702a..3c60480d 100644 --- a/contracts/script/DeployEigenLayerCore.s.sol +++ b/contracts/script/DeployEigenLayerCore.s.sol @@ -6,7 +6,7 @@ import {Script} from "forge-std/Script.sol"; import {CoreDeploymentLib} from "./utils/CoreDeploymentLib.sol"; import {UpgradeableProxyLib} from "./utils/UpgradeableProxyLib.sol"; -contract DeployEigenlayerCore is Script { +contract DeployEigenLayerCore is Script { using CoreDeploymentLib for *; using UpgradeableProxyLib for address;