-
Notifications
You must be signed in to change notification settings - Fork 202
/
p2pMessageMock.go
68 lines (56 loc) · 1.2 KB
/
p2pMessageMock.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
package mock
import (
"github.com/ElrondNetwork/elrond-go-core/core"
)
// P2PMessageMock -
type P2PMessageMock struct {
FromField []byte
DataField []byte
SeqNoField []byte
TopicField string
SignatureField []byte
KeyField []byte
PeerField core.PeerID
PayloadField []byte
TimestampField int64
}
// From -
func (msg *P2PMessageMock) From() []byte {
return msg.FromField
}
// Data -
func (msg *P2PMessageMock) Data() []byte {
return msg.DataField
}
// SeqNo -
func (msg *P2PMessageMock) SeqNo() []byte {
return msg.SeqNoField
}
// Topic -
func (msg *P2PMessageMock) Topic() string {
return msg.TopicField
}
// Signature -
func (msg *P2PMessageMock) Signature() []byte {
return msg.SignatureField
}
// Key -
func (msg *P2PMessageMock) Key() []byte {
return msg.KeyField
}
// Peer -
func (msg *P2PMessageMock) Peer() core.PeerID {
return msg.PeerField
}
// Timestamp -
func (msg *P2PMessageMock) Timestamp() int64 {
return msg.TimestampField
}
// Payload -
func (msg *P2PMessageMock) Payload() []byte {
return msg.PayloadField
}
// IsInterfaceNil returns true if there is no value under the interface
func (msg *P2PMessageMock) IsInterfaceNil() bool {
return msg == nil
}