|
@@ -60,7 +60,7 @@ abstract contract Proxy {
|
|
* @dev Fallback function that delegates calls to the address returned by `_implementation()`. Will run if no other
|
|
* @dev Fallback function that delegates calls to the address returned by `_implementation()`. Will run if no other
|
|
* function in the contract matches the call data.
|
|
* function in the contract matches the call data.
|
|
*/
|
|
*/
|
|
- fallback () payable external {
|
|
|
|
|
|
+ fallback () external payable {
|
|
_fallback();
|
|
_fallback();
|
|
}
|
|
}
|
|
|
|
|
|
@@ -68,7 +68,7 @@ abstract contract Proxy {
|
|
* @dev Fallback function that delegates calls to the address returned by `_implementation()`. Will run if call data
|
|
* @dev Fallback function that delegates calls to the address returned by `_implementation()`. Will run if call data
|
|
* is empty.
|
|
* is empty.
|
|
*/
|
|
*/
|
|
- receive () payable external {
|
|
|
|
|
|
+ receive () external payable {
|
|
_fallback();
|
|
_fallback();
|
|
}
|
|
}
|
|
|
|
|