mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2024-12-25 21:07:18 +00:00
78bf39aff7
* checkpoint * checkpoint * varint prefix for ssz * move the encoding API around a little bit to support reader writer * add a simple test for the happy path subscribe * move wait timeout to testutil * Add inverted topic mapping * Add varint prefixing to ssz network encoder * fix spacing * fix comments * fix comments * make anon methods more clear * clean up log fields * move topic mapping, reformat TODOs, get ready for brutal team review * lint * lint * lint * Update beacon-chain/p2p/gossip_topic_mappings.go Co-Authored-By: Nishant Das <nishdas93@gmail.com> * PR feedback * PR feedback * PR feedback * PR feedback * PR feedback * basic test with a hardcoded fork choice * updated beacon config to use genesis fork version * checkpoint on hello handler * create a testing db method that can be used with the new database interface * lint * lint * PR feedback * checkpoint * passing tests * comments, errors * comments, errors * remove swarm * Update WORKSPACE * Update WORKSPACE * merge * lint * lint * touch * touch * imports
14 lines
344 B
Go
14 lines
344 B
Go
package sync
|
|
|
|
import (
|
|
"time"
|
|
|
|
"github.com/libp2p/go-libp2p-core/network"
|
|
"github.com/prysmaticlabs/prysm/shared/roughtime"
|
|
)
|
|
|
|
func setRPCStreamDeadlines(stream network.Stream) {
|
|
stream.SetReadDeadline(roughtime.Now().Add(5 * time.Second)) // TTFB_TIMEOUT
|
|
stream.SetWriteDeadline(roughtime.Now().Add(10 * time.Second)) // RESP_TIMEOUT
|
|
}
|