Revert "Reduce txArriveTimeout to 100ms" (#707)

This reverts commit 243d231fe4.
This commit is contained in:
ephess 2023-02-07 20:24:21 +11:00 committed by GitHub
parent 9880d754c6
commit c6d7f59c8b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -55,11 +55,11 @@ const (
// txArriveTimeout is the time allowance before an announced transaction is // txArriveTimeout is the time allowance before an announced transaction is
// explicitly requested. // explicitly requested.
txArriveTimeout = 100 * time.Millisecond txArriveTimeout = 500 * time.Millisecond
// txGatherSlack is the interval used to collate almost-expired announces // txGatherSlack is the interval used to collate almost-expired announces
// with network fetches. // with network fetches.
txGatherSlack = 20 * time.Millisecond txGatherSlack = 100 * time.Millisecond
) )
var ( var (