-
Notifications
You must be signed in to change notification settings - Fork 708
Rename database variable names #4155
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
Conversation
Codecov Report❌ Patch coverage is Additional details and impacted files@@ Coverage Diff @@
## master #4155 +/- ##
===========================================
+ Coverage 35.10% 57.44% +22.33%
===========================================
Files 453 453
Lines 55565 55565
===========================================
+ Hits 19507 31919 +12412
+ Misses 32615 18863 -13752
- Partials 3443 4783 +1340 |
❌ 2 Tests Failed:
View the top 2 failed tests by shortest run time
📣 Thoughts on this report? Let Codecov know! | Powered by Codecov |
diegoximenes
left a comment
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.
Requested minor change 🙂
382e42f to
1285b0d
Compare
pmikolajczyk41
left a comment
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, just 2 minor things:
- there are still some methods that use
Dbsuffix, which is incompatible with the new variable naming - I tried to mark all such places I found (sorry for comment spam, but I tried to be helpful 😅 ) - unnecessary import aliases
Rename database variable names to comply with Consensus and Execution Split in codebase. Signed-off-by: Igor Braga <5835477+bragaigor@users.noreply.github.com>
Signed-off-by: Igor Braga <5835477+bragaigor@users.noreply.github.com>
Signed-off-by: Igor Braga <5835477+bragaigor@users.noreply.github.com>
Signed-off-by: Igor Braga <5835477+bragaigor@users.noreply.github.com>
Signed-off-by: Igor Braga <5835477+bragaigor@users.noreply.github.com>
Signed-off-by: Igor Braga <5835477+bragaigor@users.noreply.github.com>
Signed-off-by: Igor Braga <5835477+bragaigor@users.noreply.github.com>
Signed-off-by: Igor Braga <5835477+bragaigor@users.noreply.github.com>
45accf4 to
2578cf9
Compare
Rename database variable names to comply with Consensus and Execution Split in codebase. New names are
consensusDbto represent Consensus DB andexecutionDbto represent chain DB handled by Execution layer.Closes NIT-4200