Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions contracts/mocks/proxy/ClashingImplementation.sol
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
pragma solidity ^0.8.20;

/**
* @dev Implementation contract with a payable changeAdmin(address) function made to clash with
* TransparentUpgradeableProxy's to test correct functioning of the Transparent Proxy feature.
* @dev Implementation contract with a payable upgradeToAndCall(address,bytes) function made to clash with
* TransparentUpgradeableProxy's interface to test correct functioning of the Transparent Proxy pattern.
*/
contract ClashingImplementation {
event ClashingImplementationCall();
Expand Down
Loading