Skip to content

Commit

Permalink
Update modules/passkey/contracts/SafeWebAuthnSignerProxyFactory.sol
Browse files Browse the repository at this point in the history
Co-authored-by: Nicholas Rodrigues Lordello <nick@safe.global>
  • Loading branch information
akshay-ap and nlordell authored Apr 11, 2024
1 parent 663f229 commit 03dc99d
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions modules/passkey/contracts/SafeWebAuthnSignerProxyFactory.sol
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,9 @@ import {SafeWebAuthnSignerProxy} from "./SafeWebAuthnSignerProxy.sol";
*/
contract SafeWebAuthnSignerProxyFactory is ICustomECDSASignerFactory {
address public immutable SINGLETON;
constructor(address _singleton) {
SINGLETON = _singleton;

constructor() {
SINGLETON = address(new SafeWebAuthnSignerSingleton());
}

/**
Expand Down

0 comments on commit 03dc99d

Please sign in to comment.