increased payout timeout

This commit is contained in:
Stephan D
2025-12-29 16:43:03 +01:00
parent 4aeb06fd31
commit 7c864dc304
8 changed files with 81 additions and 34 deletions

View File

@@ -54,7 +54,7 @@ gateway:
mntx:
address: "sendico_mntx_gateway:50075"
dial_timeout_seconds: 5
call_timeout_seconds: 3
call_timeout_seconds: 15
insecure: true
oracle:

View File

@@ -273,6 +273,7 @@ func (i *Imp) initMntxClient(cfg clientConfig) mntxclient.Client {
Address: addr,
DialTimeout: cfg.dialTimeout(),
CallTimeout: cfg.callTimeout(),
Logger: i.logger.Named("client.mntx"),
})
if err != nil {
i.logger.Warn("Failed to connect to mntx gateway service", zap.String("address", addr), zap.Error(err))