-
Notifications
You must be signed in to change notification settings - Fork 514
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Custom errors, etc #619
Custom errors, etc #619
Conversation
@@ -74,7 +84,10 @@ | |||
function getAllPublishedContracts( | |||
address _publisher | |||
) external view returns (CustomContractInstance[] memory published) { | |||
CustomContractInstance[] memory linkedData = prevPublisher.getAllPublishedContracts(_publisher); | |||
CustomContractInstance[] memory linkedData; |
Check warning
Code scanning / Slither
Uninitialized local variables Medium
@@ -202,7 +225,10 @@ | |||
function getPublishedUriFromCompilerUri( | |||
string memory compilerMetadataUri | |||
) public view returns (string[] memory publishedMetadataUris) { | |||
string[] memory linkedUris = prevPublisher.getPublishedUriFromCompilerUri(compilerMetadataUri); | |||
string[] memory linkedUris; |
Check warning
Code scanning / Slither
Uninitialized local variables Medium
_publisher, | ||
_contractId | ||
); | ||
CustomContractInstance[] memory linkedVersions; |
Check warning
Code scanning / Slither
Uninitialized local variables Medium
_setupRole(DEFAULT_ADMIN_ROLE, _msgSender()); | ||
constructor( | ||
address _defaultAdmin, | ||
address _trustedForwarder, |
Check notice
Code scanning / Slither
Local variable shadowing Low
- ERC2771Context._trustedForwarder (state variable)
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## main #619 +/- ##
==========================================
+ Coverage 64.55% 64.73% +0.17%
==========================================
Files 216 216
Lines 6701 6700 -1
==========================================
+ Hits 4326 4337 +11
+ Misses 2375 2363 -12 ☔ View full report in Codecov by Sentry. |
No description provided.