update g_withdraw
This commit is contained in:
parent
f4edf46916
commit
1cb80243d8
23
bot.go
23
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
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user