This repository was archived by the owner on Jan 31, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 22
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## main #383 +/- ##
=======================================
Coverage 52.75% 52.75%
=======================================
Files 48 48
Lines 2337 2337
=======================================
Hits 1233 1233
Misses 1014 1014
Partials 90 90 ☔ View full report in Codecov by Sentry. |
aljo242
approved these changes
Jan 24, 2024
mergify bot
pushed a commit
that referenced
this pull request
Jan 24, 2024
(cherry picked from commit acff9d0) # Conflicts: # abci/abci_test.go # abci/checktx/check_tx_test.go # abci/utils_test.go # block/base/mempool_test.go # block/base/tx_priority_test.go # block/lane_test.go # block/mempool.go # block/mempool_test.go # block/mocks/lane_fetcher.go # tests/app/app.go # tests/app/config.go # tests/e2e/block_sdk_e2e_test.go # tests/e2e/go.mod # tests/integration/integration_test.go # tests/integration/network/auction_test.go # tests/integration/network/network_test.go # testutils/keeper/keeper.go # testutils/mempool/mempool.go # testutils/networksuite/networksuite.go # x/blocksdk/client/cli/query.go # x/blocksdk/client/cli/tx.go # x/blocksdk/keeper/genesis.go # x/blocksdk/keeper/grpc_query.go # x/blocksdk/keeper/grpc_query_test.go # x/blocksdk/keeper/keeper.go # x/blocksdk/keeper/keeper_test.go # x/blocksdk/keeper/msg_server.go # x/blocksdk/keeper/msg_server_test.go # x/blocksdk/module.go # x/blocksdk/types/lane_test.go # x/blocksdk/types/msgs_test.go
mergify bot
pushed a commit
that referenced
this pull request
Jan 24, 2024
(cherry picked from commit acff9d0) # Conflicts: # abci/abci_test.go # abci/checktx/check_tx_test.go # abci/checktx/mev_check_tx.go # abci/utils_test.go # block/base/mempool_test.go # block/base/tx_priority_test.go # block/lane_test.go # block/mempool.go # block/mempool_test.go # block/mocks/lane_fetcher.go # block/service/service_test.go # tests/app/app.go # tests/app/config.go # tests/app/testappd/cmd/root.go # tests/app/testappd/cmd/testnet.go # tests/e2e/block_sdk_e2e_test.go # tests/e2e/go.mod # tests/integration/integration_test.go # tests/integration/network/auction_test.go # tests/integration/network/network_test.go # testutils/keeper/keeper.go # testutils/mempool/mempool.go # testutils/networksuite/networksuite.go # testutils/utils.go # x/auction/types/mocks/staking_keeper.go # x/blocksdk/client/cli/query.go # x/blocksdk/client/cli/tx.go # x/blocksdk/keeper/genesis.go # x/blocksdk/keeper/grpc_query.go # x/blocksdk/keeper/grpc_query_test.go # x/blocksdk/keeper/keeper.go # x/blocksdk/keeper/keeper_test.go # x/blocksdk/keeper/msg_server.go # x/blocksdk/keeper/msg_server_test.go # x/blocksdk/module.go # x/blocksdk/types/lane_test.go # x/blocksdk/types/msgs_test.go
This was referenced Jan 24, 2024
Eric-Warehime
added a commit
that referenced
this pull request
Jan 24, 2024
* chore: Upgrade module path for v2 (#383) (cherry picked from commit acff9d0) # Conflicts: # abci/abci_test.go # abci/checktx/check_tx_test.go # abci/utils_test.go # block/base/mempool_test.go # block/base/tx_priority_test.go # block/lane_test.go # block/mempool.go # block/mempool_test.go # block/mocks/lane_fetcher.go # tests/app/app.go # tests/app/config.go # tests/e2e/block_sdk_e2e_test.go # tests/e2e/go.mod # tests/integration/integration_test.go # tests/integration/network/auction_test.go # tests/integration/network/network_test.go # testutils/keeper/keeper.go # testutils/mempool/mempool.go # testutils/networksuite/networksuite.go # x/blocksdk/client/cli/query.go # x/blocksdk/client/cli/tx.go # x/blocksdk/keeper/genesis.go # x/blocksdk/keeper/grpc_query.go # x/blocksdk/keeper/grpc_query_test.go # x/blocksdk/keeper/keeper.go # x/blocksdk/keeper/keeper_test.go # x/blocksdk/keeper/msg_server.go # x/blocksdk/keeper/msg_server_test.go # x/blocksdk/module.go # x/blocksdk/types/lane_test.go # x/blocksdk/types/msgs_test.go * Fix merge * update --------- Co-authored-by: Eric Warehime <[email protected]> Co-authored-by: aljo242 <[email protected]>
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
We need to upgrade the module path from
github.com/skip-mev/block-sdk
=>github.com/skip-mev/block-sdk/v2
otherwise when you rungo get github.com/skip-mev/[email protected]
you'll get the following errorNote: we should not backport this to v1.
Closes BLO-806