We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 9406bab + fcdc133 commit a388015Copy full SHA for a388015
1 file changed
test/Safe.t.sol
@@ -35,8 +35,8 @@ contract SafeTest is Test {
35
36
function test_Safe_getExecTransactionData() public {
37
address weth = 0x4200000000000000000000000000000000000006;
38
- bytes memory data =
39
- 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, "");
40
console.logBytes(data);
41
}
42
0 commit comments