@@ -32,7 +32,7 @@ contract GraphProxyAdmin is Governed {
32
32
// We need to manually run the static call since the getter cannot be flagged as view
33
33
// bytes4(keccak256("implementation()")) == 0x5c60da1b
34
34
(bool success , bytes memory returndata ) = address (_proxy).staticcall (hex "5c60da1b " );
35
- require (success);
35
+ require (success, " Proxy impl call failed " );
36
36
return abi.decode (returndata, (address ));
37
37
}
38
38
@@ -46,7 +46,7 @@ contract GraphProxyAdmin is Governed {
46
46
// We need to manually run the static call since the getter cannot be flagged as view
47
47
// bytes4(keccak256("pendingImplementation()")) == 0x396f7b23
48
48
(bool success , bytes memory returndata ) = address (_proxy).staticcall (hex "396f7b23 " );
49
- require (success);
49
+ require (success, " Proxy pendingImpl call failed " );
50
50
return abi.decode (returndata, (address ));
51
51
}
52
52
@@ -59,7 +59,7 @@ contract GraphProxyAdmin is Governed {
59
59
// We need to manually run the static call since the getter cannot be flagged as view
60
60
// bytes4(keccak256("admin()")) == 0xf851a440
61
61
(bool success , bytes memory returndata ) = address (_proxy).staticcall (hex "f851a440 " );
62
- require (success);
62
+ require (success, " Proxy admin call failed " );
63
63
return abi.decode (returndata, (address ));
64
64
}
65
65
0 commit comments