From cd67886fa24ab7ad2b173ab763bd5d1c96b55991 Mon Sep 17 00:00:00 2001 From: polymorpher Date: Sun, 20 Oct 2024 07:29:57 -0700 Subject: [PATCH] fallback test key --- test/FoodMemeFactory.t.sol | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/test/FoodMemeFactory.t.sol b/test/FoodMemeFactory.t.sol index ca184ca..05d3d0a 100644 --- a/test/FoodMemeFactory.t.sol +++ b/test/FoodMemeFactory.t.sol @@ -20,7 +20,8 @@ import {OFTComposeMsgCodec} from "@layerzerolabs/oft-evm/libs/OFTComposeMsgCodec import {TestHelperOz5} from "./helper/TestHelperOz5.sol"; contract FoodMemeFactoryTest is TestHelperOz5 { - uint256 DEPLOYER_PRIVATE_KEY = vm.envUint("DEPLOYER_PRIVATE_KEY"); + uint256 DEPLOYER_PRIVATE_KEY = + vm.envOr("DEPLOYER_PRIVATE_KEY", "0xac0974bec39a17e36ba4a6b4d238ff944bacb478cbed5efcae784d7bf4f2ff80"); address deployer = vm.addr(DEPLOYER_PRIVATE_KEY); using OptionsBuilder for bytes;