account-lookup-service 17.12.3-snapshot.0 → 17.12.3-snapshot.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
{
|
2
2
|
"name": "account-lookup-service",
|
3
3
|
"description": "Account Lookup Service is used to validate Party and Participant lookups.",
|
4
|
-
"version": "17.12.3-snapshot.
|
4
|
+
"version": "17.12.3-snapshot.1",
|
5
5
|
"license": "Apache-2.0",
|
6
6
|
"author": "ModusBox",
|
7
7
|
"contributors": [
|
@@ -168,7 +168,9 @@ class BasePartiesService {
|
|
168
168
|
|
169
169
|
async sendDeleteOracleRequest (headers, params) {
|
170
170
|
this.stepInProgress('sendDeleteOracleRequest')
|
171
|
-
|
171
|
+
const result = await this.deps.oracle.oracleRequest(headers, RestMethods.DELETE, params, null, null, this.deps.cache)
|
172
|
+
this.log.verbose('sendDeleteOracleRequest is done', { params })
|
173
|
+
return result
|
172
174
|
}
|
173
175
|
|
174
176
|
async removeProxyGetPartiesTimeoutCache (alsReq) {
|