From 5cafb5684ecb55bde83c86635833ff1fb892c6c1 Mon Sep 17 00:00:00 2001 From: Kelvin Fichter Date: Tue, 30 Mar 2021 22:01:39 -0700 Subject: [PATCH] fix tx idx --- CHANGELOG.md | 3 ++- README.md | 10 +++++----- rollup/config.go | 2 +- 3 files changed, 8 insertions(+), 7 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 385f87414..edd1aa355 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,7 +2,8 @@ ## v0.1.3 -- Integrate data transport layer + +- Integrate data transport layer - Refactor `SyncService` - New RPC Endpoint `eth_getBlockRange` diff --git a/README.md b/README.md index 2578ca233..e23c09589 100644 --- a/README.md +++ b/README.md @@ -25,11 +25,11 @@ $ make geth ### Running a Sequencer -Running a sequencer requires the [Data Transport Layer](https://github.com/ethereum-optimism/data-transport-layer) -to be synced. The data transport layer is responsible for indexing transactions -from Layer One concurrently. The sequencer pulls in transactions from the data -transport layer and executes them. The URL of the data transport layer should be -used for the sequencer config option `--rollup.clienthttp`. +Running a sequencer requires the [`transaction-indexer`](https://github.com/ethereum-optimism/transaction-indexer) +to be synced. The `transaction-indexer` is responsible for indexing transactions +from Layer One concurrently. The sequencer pulls in transactions from the +`transaction-indexer` and executes them. The URL of the `transaction-indexer` +should be used for the sequencer config option `--rollup.clienthttp`. See the script `scripts/start.sh`. It sets many of the config options and accepts CLI flags. For usage, run the command: diff --git a/rollup/config.go b/rollup/config.go index fe5855e97..08d0e613e 100644 --- a/rollup/config.go +++ b/rollup/config.go @@ -20,7 +20,7 @@ type Config struct { Eth1ChainId uint64 // Gas Limit GasLimit uint64 - // HTTP endpoint of the data transport layer + // HTTP endpoint of the transaction-indexer RollupClientHttp string L1CrossDomainMessengerAddress common.Address AddressManagerOwnerAddress common.Address