Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: fix GRPC GetTransactionInfo not found response (#3145)
<!--- Provide a general summary of your changes in the Title above --> ## Description <!--- Describe your changes in detail --> When a transaction is not found on `GetTransactionInfo` the GRPC call will return a transaction with "junk" data including a status that is set to complete. But the not_found flag is set to false, which is also the default GRPC value for boolean. This removes the `not_found` flag and adds a status, `not found` to avoid confusion. ## Motivation and Context <!--- Why is this change required? What problem does it solve? --> <!--- If it fixes an open issue, please link to the issue here. --> ## How Has This Been Tested? <!--- Please describe in detail how you tested your changes. --> <!--- Include details of your testing environment, and the tests you ran to --> <!--- see how your change affects other areas of the code, etc. --> ## Checklist: <!--- Go over all the following points, and put an `x` in all the boxes that apply. --> * [x] I'm merging against the `development` branch. * [x] I have squashed my commits into a single commit.
- Loading branch information