Skip to content

Commit a2fed54

Browse files
committed
Merge #1788: Fix: GetAddressResponse schema to return an object with address property
d615688 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 d615688 Tree-SHA512: 48fcf60615b1b26999a53c2d514313f0f8fb32546cd8d662b2908cc6d40c8d74c756cf5e298c2f01de16175430c7e52115fa30960d13e8c9042a19bf337da567
2 parents 9e8b9a3 + d615688 commit a2fed54

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed

docs/api/wallet-rpc.yaml

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -795,8 +795,13 @@ components:
795795
type: string
796796
example: "8000000"
797797
GetAddressResponse:
798-
type: string
799-
example: "bcrt1qujp2x2fv437493sm25gfjycns7d39exjnpptzw"
798+
type: object
799+
required:
800+
- address
801+
properties:
802+
address:
803+
type: string
804+
example: "bcrt1qujp2x2fv437493sm25gfjycns7d39exjnpptzw"
800805
ListWalletsResponse:
801806
type: object
802807
properties:

0 commit comments

Comments
 (0)