22 lines
511 B
Go
22 lines
511 B
Go
|
package common
|
||
|
|
||
|
import (
|
||
|
"crypto/ecdsa"
|
||
|
|
||
|
"github.com/status-im/status-go/protocol/protobuf"
|
||
|
)
|
||
|
|
||
|
// RawMessage represent a sent or received message, kept for being able
|
||
|
// to re-send/propagate
|
||
|
type RawMessage struct {
|
||
|
ID string
|
||
|
LocalChatID string
|
||
|
LastSent uint64
|
||
|
SendCount int
|
||
|
Sent bool
|
||
|
ResendAutomatically bool
|
||
|
MessageType protobuf.ApplicationMetadataMessage_Type
|
||
|
Payload []byte
|
||
|
Recipients []*ecdsa.PublicKey
|
||
|
}
|