Skip to content

Commit

Permalink
[#312] Fix TODO
Browse files Browse the repository at this point in the history
  • Loading branch information
akshay-ap committed Apr 11, 2024
1 parent bb02eca commit b6446de
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions modules/passkey/contracts/SafeWebAuthnSignerProxyFactory.sol
Original file line number Diff line number Diff line change
Expand Up @@ -62,10 +62,9 @@ contract SafeWebAuthnSignerProxyFactory is ICustomECDSASignerFactory {

let success := staticcall(gas(), _singleton, dataLocation, dataSize, 0, 0)
returndatacopy(magicValue, 0, returndatasize())
if iszero(success) {
// TODO
if eq(success, 1) {
return(0, returndatasize())
}
return(0, returndatasize())
}
}

Expand Down

0 comments on commit b6446de

Please sign in to comment.