Skip to content
This repository has been archived by the owner on Jan 31, 2025. It is now read-only.

Commit

Permalink
nit
Browse files Browse the repository at this point in the history
  • Loading branch information
davidterpay committed Dec 7, 2023
1 parent 4aa1d64 commit 9d864c0
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
4 changes: 2 additions & 2 deletions block/mempool_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -433,8 +433,8 @@ func (suite *BlockBusterTestSuite) TestRemove() {
suite.fillTOBLane(tc.numTobTxs)

// Remove all transactions from the lanes
mevCount := uint64(tc.numTobTxs)
baseCount := uint64(tc.numBaseTxs)
mevCount := tc.numTobTxs
baseCount := tc.numBaseTxs
for iterator := suite.baseLane.Select(suite.ctx, nil); iterator != nil; {
tx := iterator.Tx()

Expand Down
3 changes: 2 additions & 1 deletion block/service/service.go
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,8 @@ func (s *QueryService) GetTxDistribution(
return &types.GetTxDistributionResponse{Distribution: distribution}, nil
}

// RegisterMempoolService registers the Block SDK mempool queries on the gRPC router.
// RegisterMempoolService registers the Block SDK mempool queries on the gRPC server.

func RegisterMempoolService(
server gogogrpc.Server,
mempool block.Mempool,
Expand Down

0 comments on commit 9d864c0

Please sign in to comment.