2021-03-24 08:27:30 +00:00
|
|
|
package reputationtest
|
|
|
|
|
|
|
|
import (
|
|
|
|
"github.com/nspcc-dev/neofs-api-go/pkg/reputation"
|
|
|
|
crypto "github.com/nspcc-dev/neofs-crypto"
|
|
|
|
"github.com/nspcc-dev/neofs-crypto/test"
|
|
|
|
)
|
|
|
|
|
|
|
|
func GeneratePeerID() *reputation.PeerID {
|
|
|
|
v := reputation.NewPeerID()
|
2021-04-02 09:20:09 +00:00
|
|
|
|
|
|
|
key := [crypto.PublicKeyCompressedSize]byte{}
|
|
|
|
copy(key[:], crypto.MarshalPublicKey(&test.DecodeKey(-1).PublicKey))
|
|
|
|
|
|
|
|
v.SetPublicKey(key)
|
2021-03-24 08:27:30 +00:00
|
|
|
|
|
|
|
return v
|
|
|
|
}
|
|
|
|
|
|
|
|
func GenerateTrust() *reputation.Trust {
|
|
|
|
v := reputation.NewTrust()
|
|
|
|
v.SetPeer(GeneratePeerID())
|
|
|
|
v.SetValue(1.5)
|
|
|
|
|
|
|
|
return v
|
|
|
|
}
|