What changed, and why it matters
This commit fixes a single-letter capitalization typo in the API documentation file. The property name 'feerate' was changed to 'feeRate' in a Swagger/OpenAPI JSON template so the documented field matches the actual API. There is no code behavior change and no security impact.
No security action required; treat as a routine documentation fix.
Security signals we found
No strong security signals were identified.
Evidence from the diff
The diff modifies BTCPayServer/wwwroot/swagger/v1/swagger.template.stores-wallet.on-chain.json, changing the documented JSON property key from ‘feerate’ to ‘feeRate’. This is a documentation-only correction in the Swagger template. It does not alter request parsing, validation, serialization, or any server-side logic.
Changed components
BTCPayServer/wwwroot/swagger/v1/swagger.template.stores-wallet.on-chain.jsonInspect captured patch +1 / −1
diff --git a/BTCPayServer/wwwroot/swagger/v1/swagger.template.stores-wallet.on-chain.json b/BTCPayServer/wwwroot/swagger/v1/swagger.template.stores-wallet.on-chain.json
index c2674a9..b29175c 100644
--- a/BTCPayServer/wwwroot/swagger/v1/swagger.template.stores-wallet.on-chain.json
+++ b/BTCPayServer/wwwroot/swagger/v1/swagger.template.stores-wallet.on-chain.json
@@ -953,7 +953,7 @@
"type": "object",
"additionalProperties": false,
"properties": {
- "feerate": {
+ "feeRate": {
"type": "number",
"format": "decimal",
"description": "The fee rate (sats per byte) based on the wallet's configured recommended block confirmation target"
Why this scored 15/100
Community notes
Notes can correct, qualify, or add evidence to the AI analysis. Every note shown here has been validated by a human moderator.
The AI analysis stands alone for now. Submit a note if you can add evidence or important context.