Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions spartan/aztec-network/templates/validator.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -120,6 +120,8 @@ spec:
value: "{{ .Values.validator.sequencer.maxSecondsBetweenBlocks }}"
- name: SEQ_MIN_TX_PER_BLOCK
value: "{{ .Values.validator.sequencer.minTxsPerBlock }}"
- name: SEQ_MAX_TX_PER_BLOCK
value: "{{ .Values.validator.sequencer.maxTxsPerBlock }}"
- name: P2P_TCP_ANNOUNCE_ADDR
{{- if .Values.validator.externalTcpHost }}
value: "{{ .Values.validator.externalTcpHost }}:{{ .Values.validator.service.p2pTcpPort }}"
Expand Down
1 change: 1 addition & 0 deletions spartan/aztec-network/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,7 @@ validator:
sequencer:
maxSecondsBetweenBlocks: 0
minTxsPerBlock: 1
maxTxsPerBlock: 4
validator:
disabled: false
p2p:
Expand Down
1 change: 1 addition & 0 deletions yarn-project/p2p/src/service/discV5_service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,7 @@ export class DiscV5Service extends EventEmitter implements PeerDiscoveryService
bindAddrs: { ip4: listenMultiAddrUdp },
config: {
lookupTimeout: 2000,
requestTimeout: 2000,
allowUnverifiedSessions: true,
},
});
Expand Down