update timings
This commit is contained in:
parent
d0722cd465
commit
0e710da37b
|
@ -506,6 +506,7 @@ proc initFullNode(
|
|||
|
||||
node.dag = dag
|
||||
node.blobQuarantine = blobQuarantine
|
||||
node.dataColumnQuarantine = dataColumnQuarantine
|
||||
node.quarantine = quarantine
|
||||
node.attestationPool = attestationPool
|
||||
node.syncCommitteeMsgPool = syncCommitteeMsgPool
|
||||
|
|
|
@ -35,7 +35,7 @@ const
|
|||
BLOB_GOSSIP_WAIT_TIME_NS* = 2 * 1_000_000_000
|
||||
## How long to wait for blobs to arrive over gossip before fetching.
|
||||
|
||||
DATA_COLUMN_GOSSIP_WAIT_TIME_NS* = 2 * 1_000_000_000
|
||||
DATA_COLUMN_GOSSIP_WAIT_TIME_NS* = 8 * 1_000_000_000
|
||||
|
||||
POLL_INTERVAL = 1.seconds
|
||||
|
||||
|
|
|
@ -24,7 +24,7 @@ const
|
|||
## Allow syncing ~64 blocks/sec (minus request costs)
|
||||
blobResponseCost = allowedOpsPerSecondCost(1000)
|
||||
## Multiple can exist per block, they are much smaller than blocks
|
||||
dataColumnResponseCost = allowedOpsPerSecondCost(1000)
|
||||
dataColumnResponseCost = allowedOpsPerSecondCost(4000)
|
||||
## 1 blob has an equivalent memory of 8 data columns
|
||||
|
||||
type
|
||||
|
|
Loading…
Reference in New Issue