Skip to content

Commit 15a87df

Browse files
committed
use only new engine
1 parent 9bb86d8 commit 15a87df

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

bin/reth/src/main.rs

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -70,8 +70,9 @@ fn main() {
7070
}
7171

7272
// let use_legacy_engine = engine_args.legacy;
73-
// Bitfinity import is implemented only for the legacy engine
74-
let use_legacy_engine = true;
73+
74+
// Bitfinity import is implemented only for the new engine
75+
let use_legacy_engine = false;
7576

7677
match use_legacy_engine {
7778
false => {

bitfinity.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ reth node -vvv --http --http.port 8080 --http.addr 0.0.0.0 --http.api "debug,eth
3434
With cargo:
3535

3636
```sh
37-
cargo run -p reth -- node -vvv --http --http.port 8080 --http.addr 0.0.0.0 --http.api "debug,eth,net,trace,txpool,web3" --disable-discovery --ipcdisable --no-persist-peers -r https://orca-app-5yyst.ondigitalocean.app -i 30 -b 100 --max-fetch-blocks 5000 --log.file.directory ./target/logs --datadir ./target/reth
37+
cargo run -p reth -- node -vvv --http --http.port 8080 --http.addr 0.0.0.0 --http.api "debug,eth,net,trace,txpool,web3" --disable-discovery --ipcdisable --no-persist-peers -r https://block-extractor-testnet-1052151659755.europe-west9.run.app -i 30 -b 100 --max-fetch-blocks 5000 --log.file.directory ./target/logs --datadir ./target/reth
3838
```
3939

4040
You can query the node using the JSON-RPC API. For example, to get the block number, you can use the following command:

0 commit comments

Comments
 (0)