Skip to content

Commit 100af49

Browse files
committed
Merge remote-tracking branch 'origin/dev' into refactore-history-services
# Conflicts: # bc-gateway/bc-gateway-ports/bc-gateway-wallet-proxy/src/main/kotlin/co/nilin/opex/bcgateway/ports/walletproxy/impl/WalletProxyImpl.kt
2 parents 4b38616 + fedf3be commit 100af49

File tree

2 files changed

+2
-5
lines changed
  • bc-gateway
    • bc-gateway-app/src/main/resources
    • bc-gateway-ports/bc-gateway-wallet-proxy/src/main/kotlin/co/nilin/opex/bcgateway/ports/walletproxy/impl

2 files changed

+2
-5
lines changed

bc-gateway/bc-gateway-app/src/main/resources/application.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ logbook:
7676
- password
7777
replacement: "***"
7878
write:
79-
max-body-size: 1_000 #kb
79+
max-body-size: 10_000 #kb
8080
predicate:
8181
exclude:
8282
- path: /auth**

bc-gateway/bc-gateway-ports/bc-gateway-wallet-proxy/src/main/kotlin/co/nilin/opex/bcgateway/ports/walletproxy/impl/WalletProxyImpl.kt

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -37,10 +37,7 @@ class WalletProxyImpl(private val webClient: WebClient,
3737

3838
val token = extractBackgroundAuth.extractToken()
3939
webClient.post()
40-
.uri(URI.create("$baseUrl/deposit/${amount}_${chain}_${symbol}/${uuid}_main?transferRef=" +
41-
"" +
42-
"" +
43-
"$hash"))
40+
.uri(URI.create("$baseUrl/deposit/${amount}_${chain}_${symbol}/${uuid}_MAIN?transferRef=$hash"))
4441
.headers { httpHeaders ->
4542
run {
4643
httpHeaders.add("Content-Type", "application/json");

0 commit comments

Comments
 (0)