Merged
Conversation
pengying
approved these changes
Mar 3, 2026
Greptile SummaryThis PR relaxes the validation constraint on
Confidence Score: 5/5
|
| Filename | Overview |
|---|---|
| openapi/components/schemas/transactions/IncomingRateDetails.yaml | Changed exclusiveMinimum: 0 to minimum: 0 on umaaasVariableFeeRate, correctly allowing a zero fee rate for incoming transactions. |
| openapi/components/schemas/transactions/OutgoingRateDetails.yaml | Changed exclusiveMinimum: 0 to minimum: 0 on umaaasVariableFeeRate, correctly allowing a zero fee rate for outgoing transactions. |
| openapi.yaml | Compiled/flattened OpenAPI spec updated to reflect the same minimum: 0 changes as the source schema files. |
| mintlify/openapi.yaml | Mintlify documentation copy of the OpenAPI spec updated to reflect the same minimum: 0 changes. |
Flowchart
%%{init: {'theme': 'neutral'}}%%
flowchart TD
A[umaaasVariableFeeRate value] --> B{Validation}
B -- "value < 0" --> C[❌ Rejected\nbelow minimum]
B -- "value = 0" --> D["✅ Accepted\n(NEW: was previously rejected)"]
B -- "value > 0" --> E[✅ Accepted\npositive fee rate]
style D fill:#d4edda,stroke:#28a745
style C fill:#f8d7da,stroke:#dc3545
style E fill:#d4edda,stroke:#28a745
Last reviewed commit: 32a1e4a
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.

No description provided.