Skip to content
This repository has been archived by the owner on Feb 14, 2023. It is now read-only.

Commit

Permalink
fix constructor argument type
Browse files Browse the repository at this point in the history
  • Loading branch information
nksazonov committed Oct 14, 2022
1 parent cc40cac commit 5d8985c
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion contracts/vault/test/TESTVaultProxy.sol
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,13 @@
pragma solidity 0.8.16;

import '../VaultProxyBase.sol';
import '../VaultImplBase.sol';

/**
* @dev Use for TEST PURPOSES ONLY. !!! Contains security vulnerability !!!
*/
contract TESTVaultProxy is VaultProxyBase {
constructor(address startImplementation) VaultProxyBase(startImplementation) {}
constructor(VaultImplBase startImplementation) VaultProxyBase(startImplementation) {}
// SECURITY VULNERABILITY HERE ^^^
// !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
}

0 comments on commit 5d8985c

Please sign in to comment.