-
Notifications
You must be signed in to change notification settings - Fork 16
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
Add auction bot module #70
Conversation
github.com/go-chi/chi/v5 v5.0.8 | ||
github.com/joho/godotenv v1.4.0 | ||
github.com/kava-labs/go-tools/signing v0.0.0-20240404001505-7ad3de810cdd | ||
github.com/kava-labs/go-tools/signing v0.0.0-20240729153035-2e263b3a24d2 |
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.
The version with updated dependencies
@@ -0,0 +1,170 @@ | |||
//go:build integration |
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.
This is same test as was in testing
file, where we check signer (here more for validation of signature and the transactions are passing)
test-integration: | ||
cd signing/testing && go test -v -tags=integration -count=1 |
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.
Should this be moved to the signing specific Makefile?
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.
Not sure if it make sense. If we will extend integration test to other modules it's easier to run one integration test for all of them with just make test-integration
, than running it directory b directory, so would prefer to keep one common make command in the root
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.
nice addition to ci
auction-bot
and as a resultsigning
to use cometbft, cossmos-sdk v0.47.10 and kava v0.26.1.spammer
switched to already used logrus (just updated imports)