mirror of https://github.com/status-im/go-waku.git
30 lines
472 B
Go
30 lines
472 B
Go
package common
|
|
|
|
import "github.com/status-im/go-waku/waku/v2/protocol"
|
|
|
|
type Envelope struct {
|
|
msg *protocol.WakuMessage
|
|
size int
|
|
hash [32]byte
|
|
}
|
|
|
|
func NewEnvelope(msg *protocol.WakuMessage, size int, hash [32]byte) *Envelope {
|
|
return &Envelope{
|
|
msg: msg,
|
|
size: size,
|
|
hash: hash,
|
|
}
|
|
}
|
|
|
|
func (e *Envelope) Message() *protocol.WakuMessage {
|
|
return e.msg
|
|
}
|
|
|
|
func (e *Envelope) Hash() [32]byte {
|
|
return e.hash
|
|
}
|
|
|
|
func (e *Envelope) Size() int {
|
|
return e.size
|
|
}
|