From 0141808564d655b41c8eae2c9173e7665aec0c50 Mon Sep 17 00:00:00 2001 From: Jem <0x0xjem@gmail.com> Date: Tue, 18 Nov 2025 14:21:48 +0400 Subject: [PATCH] test: fix test that was failing due to the inclusion of a ledger derivation path --- test/Safe.t.sol | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/Safe.t.sol b/test/Safe.t.sol index d7b0b71..8a8a971 100644 --- a/test/Safe.t.sol +++ b/test/Safe.t.sol @@ -35,8 +35,8 @@ contract SafeTest is Test { function test_Safe_getExecTransactionData() public { address weth = 0x4200000000000000000000000000000000000006; - bytes memory data = - safe.getExecTransactionData(weth, abi.encodeCall(IWETH.withdraw, (0)), foundrySigner1, "m/44'/60'/0'/0/0"); + vm.rememberKey(uint256(foundrySigner1PrivateKey)); + bytes memory data = safe.getExecTransactionData(weth, abi.encodeCall(IWETH.withdraw, (0)), foundrySigner1, ""); console.logBytes(data); } }