Skip to content

Commit b7c4e47

Browse files
Merge pull request #869 from ethereum-optimism/node-flag-best-practices
Add p2p recommended flags
2 parents bbbda0c + cbd9da9 commit b7c4e47

File tree

1 file changed

+23
-0
lines changed

1 file changed

+23
-0
lines changed

pages/builders/chain-operators/management/best-practices.mdx

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -62,6 +62,29 @@ internet. Instead, you could handle your ingress traffic behind a proxy. Have
6262
the proxy forward traffic to replicas and have them gossip the transactions
6363
internally.
6464

65+
### Improve Reliability of Peer-to-Peer transactions
66+
67+
These flags can improve the reliability of peer-to-peer transactions from internal replica nodes and the sequencer node.
68+
69+
For sequencer nodes:
70+
71+
```
72+
GETH_TXPOOL_JOURNAL: ""
73+
GETH_TXPOOL_JOURNALREMOTES: "false"
74+
GETH_TXPOOL_NOLOCALS: "true"
75+
```
76+
77+
For replica nodes:
78+
79+
```
80+
GETH_TXPOOL_JOURNALREMOTES: "true"
81+
GETH_TXPOOL_LIFETIME: "1h"
82+
GETH_TXPOOL_NOLOCALS: "true"
83+
```
84+
85+
For additional information about these flags, check out our [Execution Layer Configuration Options](/builders/node-operators/configuration/execution-config) doc.
86+
87+
6588
## Assumptions
6689

6790
### op-proposer assumes archive mode

0 commit comments

Comments
 (0)