Skip to content

Commit

Permalink
Merge pull request #177 from euler-xyz/virtual-EVC
Browse files Browse the repository at this point in the history
Set EVC() to virtual
  • Loading branch information
haythemsellami authored Oct 17, 2024
2 parents 6b9be5c + e6550e6 commit ef8c02c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/utils/EVCUtil.sol
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ abstract contract EVCUtil {

/// @notice Returns the address of the Ethereum Vault Connector (EVC) used by this contract.
/// @return The address of the EVC contract.
function EVC() external view returns (address) {
function EVC() external view virtual returns (address) {
return address(evc);
}

Expand Down

0 comments on commit ef8c02c

Please sign in to comment.