-
Notifications
You must be signed in to change notification settings - Fork 112
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
Rename CustomCallOperation #9782
Conversation
Signed-off-by: Kristiyan Selveliev <[email protected]>
Quality Gate passedIssues Measures |
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## main #9782 +/- ##
=========================================
Coverage 92.25% 92.25%
Complexity 7769 7769
=========================================
Files 950 950
Lines 32450 32450
Branches 4113 4113
=========================================
+ Hits 29936 29937 +1
Misses 1546 1546
+ Partials 968 967 -1 ☔ View full report in Codecov by Sentry. 🚨 Try these New Features:
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
Description:
Currently when trying to run transaction using Reusables services transactionExecutor
we are getting the following error -
java.lang.RuntimeException: java.lang.NoSuchMethodError: 'void com.hedera.node.app.service.contract.impl.exec.operations.CustomCallOperation.<init>(com.hedera.node.app.service.contract.impl.exec.FeatureFlags, org.hyperledger.besu.evm.gascalculator.GasCalculator, com.hedera.node.app.service.contract.impl.exec.AddressChecks)'
Services
CustomCallOperation
clashes with our CustomCallOperation.java causing the issue.Renaming our CustomCallOperation to
HederaCustomCallOperation
similar to the other custom operations that we have fixes the conflict.This PR modifies
Rename CustomCallOperation to HederaCustomCallOperation
Related issue(s):
Fixes #
Notes for reviewer:
Checklist