Skip to content

Commit a388015

Browse files
authored
Merge pull request #20 from 0xJem/fix/test
2 parents 9406bab + fcdc133 commit a388015

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

test/Safe.t.sol

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,8 +35,8 @@ contract SafeTest is Test {
3535

3636
function test_Safe_getExecTransactionData() public {
3737
address weth = 0x4200000000000000000000000000000000000006;
38-
bytes memory data =
39-
safe.getExecTransactionData(weth, abi.encodeCall(IWETH.withdraw, (0)), foundrySigner1, "m/44'/60'/0'/0/0");
38+
vm.rememberKey(uint256(foundrySigner1PrivateKey));
39+
bytes memory data = safe.getExecTransactionData(weth, abi.encodeCall(IWETH.withdraw, (0)), foundrySigner1, "");
4040
console.logBytes(data);
4141
}
4242
}

0 commit comments

Comments
 (0)