Skip to content

Commit

Permalink
fix version check bug (#2622)
Browse files Browse the repository at this point in the history
  • Loading branch information
buck54321 authored Dec 5, 2023
1 parent 0c52800 commit 1ac7ced
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion client/core/core.go
Original file line number Diff line number Diff line change
Expand Up @@ -7860,7 +7860,7 @@ func (c *Core) handleReconnect(host string) {
auto = baseCfg == nil || !trade.wallets.baseWallet.supportsVer(baseCfg.Version)
}
if !auto {
quoteCfg := dc.assetConfig(trade.Base())
quoteCfg := dc.assetConfig(trade.Quote())
auto = quoteCfg == nil || !trade.wallets.quoteWallet.supportsVer(quoteCfg.Version)
}

Expand Down

0 comments on commit 1ac7ced

Please sign in to comment.