added missing functions to fuzzPeer

This commit is contained in:
Jasmina Malicevic
2022-10-06 10:02:46 +02:00
parent 497579028a
commit 1cc14bf6bd

View File

@@ -84,3 +84,5 @@ func (fp *fuzzPeer) Send(byte, []byte) bool { return true }
func (fp *fuzzPeer) TrySend(byte, []byte) bool { return true }
func (fp *fuzzPeer) Set(key string, value interface{}) { fp.m[key] = value }
func (fp *fuzzPeer) Get(key string) interface{} { return fp.m[key] }
func (fp *fuzzPeer) SetRemovalFailed() {}
func (fp *fuzzPeer) GetRemovalFailed() bool { return false }