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:
renovate[bot]
2020-11-13 22:50:00 -03:00
committed by GitHub
parent f547b6ff27
commit 3d2e5c0310
6 changed files with 4234 additions and 4925 deletions

View File

@ -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();
}