Skip to content

Commit

Permalink
fix: build
Browse files Browse the repository at this point in the history
  • Loading branch information
marcello33 committed Nov 8, 2024
1 parent 4221228 commit 2af775c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internal/cli/server/api_service.go
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ func blockToProtoBlock(h *types.Block) *protobor.Block {
}

func (s *Server) TransactionReceipt(ctx context.Context, req *protobor.ReceiptRequest) (*protobor.ReceiptResponse, error) {
_, blockHash, _, txnIndex, err := s.backend.APIBackend.GetTransaction(ctx, protoutil.ConvertH256ToHash(req.Hash))
_, _, blockHash, _, txnIndex, err := s.backend.APIBackend.GetTransaction(ctx, protoutil.ConvertH256ToHash(req.Hash))
if err != nil {
return nil, err
}
Expand Down

0 comments on commit 2af775c

Please sign in to comment.