Use PeerRecord value instead of pointer in EvtLocalPeerRecordUpdated (#113)

This commit is contained in:
Yusef Napora 2020-02-10 15:18:15 -05:00 committed by GitHub
parent 7b2888dfdb
commit 3f5306c5d4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -78,5 +78,5 @@ type EvtLocalAddressesUpdated struct {
type EvtLocalPeerRecordUpdated struct {
// Record contains the updated peer.PeerRecord, wrapped in a record.Envelope and
// signed by the Host's private key.
Record *record.Envelope
Record record.Envelope
}