fix_: crash when selected token cannot be found is fixed
This commit is contained in:
parent
2f08c4c6f9
commit
759034ec7a
|
@ -554,7 +554,7 @@ func (r *Router) getBalanceMapForTokenOnChains(ctx context.Context, input *Route
|
||||||
// check token existence
|
// check token existence
|
||||||
token := input.SendType.FindToken(r.tokenManager, r.collectiblesService, input.AddrFrom, chain, input.TokenID)
|
token := input.SendType.FindToken(r.tokenManager, r.collectiblesService, input.AddrFrom, chain, input.TokenID)
|
||||||
if token == nil {
|
if token == nil {
|
||||||
chainError(chain.ChainID, token.Symbol, ErrTokenNotFound)
|
chainError(chain.ChainID, input.TokenID, ErrTokenNotFound)
|
||||||
continue
|
continue
|
||||||
}
|
}
|
||||||
// check native token existence
|
// check native token existence
|
||||||
|
|
Loading…
Reference in New Issue