-
Notifications
You must be signed in to change notification settings - Fork 41
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
Remove Rewards Module #1906
Remove Rewards Module #1906
Conversation
Important Auto Review SkippedDraft detected. Please check the settings in the CodeRabbit UI or the To trigger a single review, invoke the Thank you for using CodeRabbit. We offer it for free to the OSS community and would appreciate your support in helping us grow. If you find it useful, would you consider giving us a shout-out on your favorite social media? TipsChatThere are 3 ways to chat with CodeRabbit:
Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments. CodeRabbit Commands (invoked as PR comments)
Additionally, you can add CodeRabbit Configration File (
|
@coderabbitai list all the tests that were removed in internal/handlers/msg_service_router_test.go |
Tip For best results, initiate chat on the files or code changes. @nullpointer0x00, after running the scripts to compare the tests in Analysis chainScripts executedThe following scripts were executed for the analysis: Script: #!/bin/bash
# Find the commit hash of the previous change to msg_service_router_test.go
commit_hash=$(git log -n 1 --pretty=format:"%H" -- internal/handlers/msg_service_router_test.go)
# Show the names of tests removed in the last commit affecting msg_service_router_test.go
git show $commit_hash:internal/handlers/msg_service_router_test.go | grep -oP 'func Test\K\w+' > before_tests.txt
git show HEAD:internal/handlers/msg_service_router_test.go | grep -oP 'func Test\K\w+' > after_tests.txt
comm -23 before_tests.txt after_tests.txt
Length of output: 467 Script: #!/bin/bash
# Find the commit hash of the previous change to msg_service_router_test.go
commit_hash=$(git log -n 1 --pretty=format:"%H" -- internal/handlers/msg_service_router_test.go)
# Extract the names of tests from the file in the specified commit and the current HEAD, then compare them
git show $commit_hash:internal/handlers/msg_service_router_test.go | grep -oP 'func Test\K\w+' > before_tests.txt
git show HEAD:internal/handlers/msg_service_router_test.go | grep -oP 'func Test\K\w+' > after_tests.txt
diff --new-line-format="" --unchanged-line-format="" before_tests.txt after_tests.txt
Length of output: 435 |
Moved to different branch. |
Description
closes: #1905
Before we can merge this PR, please make sure that all the following items have been
checked off. If any of the checklist items are not applicable, please leave them but
write a little note why.
docs/
) or specification (x/<module>/spec/
)godoc
comments.Unreleased
section inCHANGELOG.md
Files changed
in the Github PR explorerCodecov Report
in the comment section below once CI passes