From 11b974c635408bef0c81b6c3f885554c80c47630 Mon Sep 17 00:00:00 2001 From: Sarah Schwartz <58856580+sarahschwartz@users.noreply.github.com> Date: Wed, 18 Sep 2024 11:13:12 -0600 Subject: [PATCH] chore: restore working commit --- code/multisig/contracts/TwoUserMultisig.sol | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/code/multisig/contracts/TwoUserMultisig.sol b/code/multisig/contracts/TwoUserMultisig.sol index 9a702734..551c634e 100644 --- a/code/multisig/contracts/TwoUserMultisig.sol +++ b/code/multisig/contracts/TwoUserMultisig.sol @@ -110,7 +110,7 @@ contract TwoUserMultisig is IAccount, IERC1271 { uint32 gas = Utils.safeCastToU32(gasleft()); // Note, that the deployer contract can only be called - // with a "enableEraVMExtensions" flag. + // with a "systemCall" flag. SystemContractsCaller.systemCallWithPropagatedRevert(gas, to, value, data); } else { bool success; @@ -215,8 +215,8 @@ contract TwoUserMultisig is IAccount, IERC1271 { // since it is where the length of the `_fullSignature` is stored assembly { let r := mload(add(_fullSignature, 0x20)) - let s := mload(add(_fullSignature, 0x40)) - let v := and(mload(add(_fullSignature, 0x41)), 0xff) + let s := mload(add(_fullSignature, 0x40)) + let v := and(mload(add(_fullSignature, 0x41)), 0xff) mstore(add(signature1, 0x20), r) mstore(add(signature1, 0x40), s)