diff --git a/bindings/channels.go b/bindings/channels.go index 49a68d97561be6669ef5a3518b31774c072f89e3..c7a64f50c36367dd7d57fa9c70f9f3c5b21de95d 100644 --- a/bindings/channels.go +++ b/bindings/channels.go @@ -829,7 +829,7 @@ type EventModel interface { ReceiveReaction(channelID []byte, messageID []byte, reactionTo []byte, senderUsername string, reaction string, timestamp int64, lease int64, - round int64, status int64) + roundId int64, status int64) // UpdateSentStatus is called whenever the sent status of a message // has changed. @@ -855,7 +855,7 @@ type toEventModel struct { // NewEventModel is a constructor for a toEventModel. This will take in an // EventModel and wraps it around the toEventModel. -func NewEventModel(em EventModel) *toEventModel { +func NewEventModel(em channels.EventModel) *toEventModel { return &toEventModel{em: em} }