Skip to content

Commit e7fd3ed

Browse files
rhuiserRafaelAPB
authored andcommitted
fix(satp-hermes): fixed parameter names for OpenAPI spec method get-approve-address
The implementation of the SATP gateway expects a different set of parameter names - they have to be prefixed with `networkId`. Signed-off-by: Robin Huiser <[email protected]>
1 parent ec51567 commit e7fd3ed

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

packages/cactus-plugin-satp-hermes/src/main/json/openapi-blo-bundled.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2610,11 +2610,11 @@
26102610
"type": "object",
26112611
"description": "The network of the DLT being interacted with.",
26122612
"properties": {
2613-
"id": {
2613+
"networkId.id": {
26142614
"type": "string",
26152615
"description": "The network of the DLT being interacted with."
26162616
},
2617-
"ledgerType": {
2617+
"networkId.ledgerType": {
26182618
"description": "Enumerates the different ledger vendors and their major versions encoded within the name of the LedgerType. For example \"BESU_1X\" involves all of the [1.0.0;2.0.0) where 1.0.0 is included and anything up until, but not 2.0.0. See: https://stackoverflow.com/a/4396303/698470 for further explanation.",
26192619
"type": "string",
26202620
"enum": [
@@ -2629,8 +2629,8 @@
26292629
}
26302630
},
26312631
"required": [
2632-
"id",
2633-
"ledgerType"
2632+
"networkId.id",
2633+
"networkId.ledgerType"
26342634
]
26352635
},
26362636
"required": true

0 commit comments

Comments
 (0)