Check specific db error
This commit is contained in:
parent
176473aa26
commit
4011597d9c
@ -640,8 +640,12 @@ func (h *Handlers) CheckBalance(ctx context.Context, sym string, input []byte) (
|
||||
// get the active sym and active balance
|
||||
activeSym, err := store.ReadEntry(ctx, sessionId, utils.DATA_ACTIVE_SYM)
|
||||
if err != nil {
|
||||
res.Content = "0.00"
|
||||
return res, nil
|
||||
if db.IsNotFound(err) {
|
||||
res.Content = "0.00"
|
||||
return res, nil
|
||||
}
|
||||
|
||||
return res, err
|
||||
}
|
||||
|
||||
activeBal, err := store.ReadEntry(ctx, sessionId, utils.DATA_ACTIVE_BAL)
|
||||
|
Loading…
Reference in New Issue
Block a user