fix: set a default value for zero conf limit on coins without zero conf during machine polling
This commit is contained in:
parent
df5bc81700
commit
7228104cb2
1 changed files with 1 additions and 1 deletions
|
|
@ -152,7 +152,7 @@ const staticConfig = ({ currentConfigVersion, deviceId, deviceName, pq, settings
|
||||||
const setZeroConfLimit = config => coin =>
|
const setZeroConfLimit = config => coin =>
|
||||||
_.set(
|
_.set(
|
||||||
'zeroConfLimit',
|
'zeroConfLimit',
|
||||||
configManager.getWalletSettings(coin.cryptoCode, config).zeroConfLimit,
|
configManager.getWalletSettings(coin.cryptoCode, config).zeroConfLimit ?? 0,
|
||||||
coin
|
coin
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue