Update docs

This commit is contained in:
github-actions
2023-04-05 20:38:14 +00:00
parent 9b4ddd7b38
commit 177ee63028
10 changed files with 262 additions and 217 deletions

View File

@ -3,12 +3,11 @@
pragma solidity ^0.8.0;
/**
* @dev Implementation contract with an admin() function made to clash with
* @dev TransparentUpgradeableProxy's to test correct functioning of the
* @dev Transparent Proxy feature.
* @dev Implementation contract with a payable admin() function made to clash with TransparentUpgradeableProxy's to
* test correct functioning of the Transparent Proxy feature.
*/
contract ClashingImplementation {
function admin() external pure returns (address) {
function admin() external payable returns (address) {
return 0x0000000000000000000000000000000011111142;
}