Skip to content

Commit a804911

Browse files
fix request key bug (#5047)
1 parent 0b56c4e commit a804911

3 files changed

Lines changed: 7 additions & 2 deletions

File tree

.changeset/thick-geese-rush.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
'@chainlink/asseto-finance-adapter': patch
3+
---
4+
5+
Bugfix. Fix request coalescing bug

packages/sources/asseto-finance/src/transport/nav.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,7 @@ class NavTransport extends SubscriptionTransport<HttpTransportTypes> {
136136
inputParameters,
137137
endpointName: this.endpointName,
138138
},
139-
data: requestConfig.data || {},
139+
data: { fundId },
140140
transportName: this.name,
141141
})
142142

packages/sources/asseto-finance/src/transport/reserve.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -154,7 +154,7 @@ class ReserveTransport extends SubscriptionTransport<HttpTransportTypes> {
154154
inputParameters,
155155
endpointName: this.endpointName,
156156
},
157-
data: requestConfig.data || {},
157+
data: { fundId },
158158
transportName: this.name,
159159
})
160160

0 commit comments

Comments
 (0)