diff --git a/bot.go b/bot.go index a65e5ab..a840b7b 100644 --- a/bot.go +++ b/bot.go @@ -735,29 +735,26 @@ func botGWithdraw(m *tb.Message) { b, _ := json.Marshal(p) t := time.Now().UTC() _, err := createJob(objSubTypeJobGWithdraw, objJobPriority, int64(m.Chat.ID), 0, t, b) - - } - if false { - c := TGCommand{ - Type: commandReplyMsg, - //Text: fmt.Sprintf("%s", err), - Text: "error", - FromMsgID64: int64(m.ID), - FromChatID64: m.Chat.ID, + if err != nil { + c := TGCommand{ + Type: commandReplyMsg, + Text: fmt.Sprintf("%s", err), + FromMsgID64: int64(m.ID), + FromChatID64: m.Chat.ID, + } + TGCmdQueue <- c } - TGCmdQueue <- c + } else { c := TGCommand{ Type: commandReplyMsg, - Text: "Withdrawal started", + Text: "Wrong format", FromMsgID64: int64(m.ID), FromChatID64: m.Chat.ID, } TGCmdQueue <- c } - //log.Printf("botGDepositAll : json : %s\n", string(b)) - return }