Skip to content

Commit

Permalink
Merge pull request #2 from idea404/fix-outside-execution
Browse files Browse the repository at this point in the history
fix: remove executeTransactionFromOutside
  • Loading branch information
Romsters authored Nov 13, 2023
2 parents 4ee85a6 + 59e38fa commit 10f6bd5
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions contracts/MultiSig/TwoUserMultisig.sol
Original file line number Diff line number Diff line change
Expand Up @@ -108,12 +108,11 @@ contract TwoUserMultisig is IAccount, IERC1271 {
}
}

function executeTransactionFromOutside(Transaction calldata _transaction)
function executeTransactionFromOutside(Transaction calldata)
external
payable
{
_validateTransaction(bytes32(0), _transaction);
_executeTransaction(_transaction);
revert("executeTransactionFromOutside is not implemented");
}

function isValidSignature(bytes32 _hash, bytes memory _signature)
Expand Down

0 comments on commit 10f6bd5

Please sign in to comment.