Update lockfile (#2384)
Co-authored-by: Renovate Bot <bot@renovateapp.com> Co-authored-by: Francisco Giordano <frangio.1@gmail.com>
This commit is contained in:
@ -23,5 +23,5 @@ contract Create2Impl {
|
||||
return Create2.computeAddress(salt, codeHash, deployer);
|
||||
}
|
||||
|
||||
receive() payable external {}
|
||||
receive() external payable {}
|
||||
}
|
||||
|
||||
@ -15,7 +15,7 @@ contract DummyImplementation {
|
||||
value = 10;
|
||||
}
|
||||
|
||||
function initializePayable() payable public {
|
||||
function initializePayable() public payable {
|
||||
value = 100;
|
||||
}
|
||||
|
||||
@ -23,7 +23,7 @@ contract DummyImplementation {
|
||||
value = _value;
|
||||
}
|
||||
|
||||
function initializePayable(uint256 _value) payable public {
|
||||
function initializePayable(uint256 _value) public payable {
|
||||
value = _value;
|
||||
}
|
||||
|
||||
@ -47,7 +47,7 @@ contract DummyImplementation {
|
||||
}
|
||||
|
||||
contract DummyImplementationV2 is DummyImplementation {
|
||||
function migrate(uint256 newVal) payable public {
|
||||
function migrate(uint256 newVal) public payable {
|
||||
value = newVal;
|
||||
}
|
||||
|
||||
|
||||
@ -60,7 +60,7 @@ abstract contract Proxy {
|
||||
* @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.
|
||||
*/
|
||||
fallback () payable external {
|
||||
fallback () external payable {
|
||||
_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
|
||||
* is empty.
|
||||
*/
|
||||
receive () payable external {
|
||||
receive () external payable {
|
||||
_fallback();
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user