Skip to content

Commit

Permalink
#18: Fix asking for amount
Browse files Browse the repository at this point in the history
  • Loading branch information
LucaBernstein committed Nov 6, 2021
1 parent 2bda703 commit 88700ad
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bot/controller.go
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ func (bc *BotController) commandCreateSimpleTx(m *tb.Message) {
hint := bc.State.
SimpleTx(m). // create new tx
NextHint(bc.Repo, m) // get first hint
bc.Bot.Send(m.Sender, hint.Prompt, hint.KeyboardOptions)
bc.Bot.Send(m.Sender, hint.Prompt, ReplyKeyboard(hint.KeyboardOptions))
}

func (bc *BotController) commandList(m *tb.Message) {
Expand Down

0 comments on commit 88700ad

Please sign in to comment.