Skip to content

Commit

Permalink
add inform message
Browse files Browse the repository at this point in the history
  • Loading branch information
ArnaudBger committed Sep 13, 2024
1 parent 427678e commit e3c67d8
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion starknet-events/convo.go
Original file line number Diff line number Diff line change
Expand Up @@ -268,7 +268,8 @@ func (c *Convo) Update(msg loop.Msg) loop.Cmd {
}

peekABI := c.Msg().Message(string(contract.RawABI)).Cmd()
return loop.Seq(peekABI, cmd(AskConfirmContractABI{}))
informMessage := c.Msg().Message("The ABI is retrieved from the latest block. Changes to the contract's ABI since its deployment are not currently handled.").Cmd()
return loop.Seq(peekABI, informMessage, cmd(AskConfirmContractABI{}))

case AskContractAddress:
return loop.Seq(
Expand Down

0 comments on commit e3c67d8

Please sign in to comment.