Skip to content
Open
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: 0 additions & 2 deletions devnet/config-op/test.geth.external.rpc.config.toml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,5 @@ GlobalQueue = 100000
AccountSlots = 50000
AccountQueue = 10000

[Eth.XLayer]
EnableInnerTx = true
[Eth.GPO]
MinSuggestedPriorityFee = 1
2 changes: 0 additions & 2 deletions devnet/config-op/test.geth.rpc.config.toml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,5 @@ GlobalQueue = 100000
AccountSlots = 50000
AccountQueue = 10000

[Eth.XLayer]
EnableInnerTx = true
[Eth.GPO]
MinSuggestedPriorityFee = 1
2 changes: 0 additions & 2 deletions devnet/config-op/test.geth.seq.config.toml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,5 @@ GlobalQueue = 100000
AccountSlots = 50000
AccountQueue = 10000

[Eth.XLayer]
EnableInnerTx = false
[Eth.GPO]
MinSuggestedPriorityFee = 1
10 changes: 1 addition & 9 deletions devnet/entrypoint/reth-external-rpc.sh
Original file line number Diff line number Diff line change
Expand Up @@ -11,13 +11,6 @@ if [ "${JEMALLOC_PROFILING:-false}" = "true" ]; then
echo "Jemalloc profiling enabled: _RJEM_MALLOC_CONF=$_RJEM_MALLOC_CONF"
fi

# Build the optional innertx flag
INNERTX_FLAG=""
if [ "${ENABLE_INNERTX_RPC:-false}" = "true" ]; then
INNERTX_FLAG="--xlayer.enable-innertx"
echo "Inner transaction tracking enabled for RPC"
fi

# Read the first argument (1 or 0), default to 0 if not provided
FLASHBLOCKS_RPC=${FLASHBLOCKS_RPC:-"true"}

Expand Down Expand Up @@ -52,8 +45,7 @@ CMD="op-reth node \
--txpool.max-pending-txns=100000 \
--txpool.max-new-txns=100000 \
--rpc.eth-proof-window=10000 \
--rollup.sequencer-http=http://op-geth-rpc:8545
$INNERTX_FLAG"
--rollup.sequencer-http=http://op-geth-rpc:8545"

# For flashblocks architecture. Enable flashblocks RPC
if [ "$FLASHBLOCK_ENABLED" = "true" ] && [ "$FLASHBLOCKS_RPC" = "true" ]; then
Expand Down
Loading