Browse Source

Merge JoinMarket-Org/joinmarket-clientserver#1788: Fix: GetAddressResponse schema to return an object with address property

d615688df3 Update GetAddressResponse schema to return an object with address property (Nischal Shetty)

Pull request description:

  Corrected the `GetAddressResponse` schema definition in `wallet-rpc.yaml` to properly represent the actual API response structure.

ACKs for top commit:
  kristapsk:
    cr utACK d615688df3

Tree-SHA512: 48fcf60615b1b26999a53c2d514313f0f8fb32546cd8d662b2908cc6d40c8d74c756cf5e298c2f01de16175430c7e52115fa30960d13e8c9042a19bf337da567
master
merge-script 5 months ago
parent
commit
a2fed54156
No known key found for this signature in database
GPG Key ID: 33E472FE870C7E5D
  1. 9
      docs/api/wallet-rpc.yaml

9
docs/api/wallet-rpc.yaml

@ -795,8 +795,13 @@ components:
type: string
example: "8000000"
GetAddressResponse:
type: string
example: "bcrt1qujp2x2fv437493sm25gfjycns7d39exjnpptzw"
type: object
required:
- address
properties:
address:
type: string
example: "bcrt1qujp2x2fv437493sm25gfjycns7d39exjnpptzw"
ListWalletsResponse:
type: object
properties:

Loading…
Cancel
Save