Resolve bug on transaction confirmation PIN

This commit is contained in:
2024-09-03 15:02:31 +03:00
parent 0c360c0cc4
commit ab6433168a
3 changed files with 6 additions and 3 deletions

View File

@@ -837,9 +837,10 @@ func (h *Handlers) InitiateTransaction(ctx context.Context, sym string, input []
account_authorized_flag, err := h.parser.GetFlag("flag_account_authorized")
if err != nil {
res.FlagReset = append(res.FlagReset, account_authorized_flag)
return res, nil
}
res.FlagReset = append(res.FlagReset, account_authorized_flag)
return res, nil
}