Skip to content

Commit 88fe631

Browse files
committed
target rezbera reth
1 parent 5404de3 commit 88fe631

File tree

1 file changed

+49
-48
lines changed

1 file changed

+49
-48
lines changed

Cargo.toml

Lines changed: 49 additions & 48 deletions
Original file line numberDiff line numberDiff line change
@@ -115,51 +115,52 @@ lto = "thin"
115115
ignored = ["modular-bitfield"]
116116

117117
[patch."https://github.com/paradigmxyz/reth"]
118-
reth = { path = "../reth/bin/reth" }
119-
reth-rpc = { path = "../reth/crates/rpc/rpc" }
120-
reth-basic-payload-builder = { path = "../reth/crates/payload/basic" }
121-
reth-chainspec = { path = "../reth/crates/chainspec" }
122-
reth-cli = { path = "../reth/crates/cli/cli" }
123-
reth-cli-commands = { path = "../reth/crates/cli/commands" }
124-
reth-cli-util = { path = "../reth/crates/cli/util" }
125-
reth-db = { path = "../reth/crates/storage/db" }
126-
reth-engine-local = { path = "../reth/crates/engine/local" }
127-
reth-engine-primitives = { path = "../reth/crates/engine/primitives" }
128-
reth-errors = { path = "../reth/crates/errors" }
129-
reth-ethereum-cli = { path = "../reth/crates/ethereum/cli" }
130-
reth-engine-tree = { path = "../reth/crates/engine/tree" }
131-
reth-ethereum-engine-primitives = { path = "../reth/crates/ethereum/engine-primitives" }
132-
reth-ethereum-payload-builder = { path = "../reth/crates/ethereum/payload" }
133-
reth-ethereum-primitives = { path = "../reth/crates/ethereum/primitives" }
134-
reth-evm = { path = "../reth/crates/evm/evm" }
135-
reth-evm-ethereum = { path = "../reth/crates/ethereum/evm" }
136-
reth-network-peers = { path = "../reth/crates/net/peers" }
137-
reth-node-api = { path = "../reth/crates/node/api" }
138-
reth-node-builder = { path = "../reth/crates/node/builder" }
139-
reth-node-core = { path = "../reth/crates/node/core" }
140-
reth-payload-validator = { path = "../reth/crates/payload/validator" }
141-
reth-node-ethereum = { path = "../reth/crates/ethereum/node" }
142-
reth-payload-primitives = { path = "../reth/crates/payload/primitives" }
143-
reth-primitives-traits = { path = "../reth/crates/primitives-traits" }
144-
reth-tracing = { path = "../reth/crates/tracing" }
145-
reth-codecs = { path = "../reth/crates/storage/codecs" }
146-
reth-db-api = { path = "../reth/crates/storage/db-api" }
147-
reth-rpc-engine-api = { path = "../reth/crates/rpc/rpc-engine-api" }
148-
reth-rpc-eth-api = { path = "../reth/crates/rpc/rpc-eth-api" }
149-
reth-rpc-eth-types = { path = "../reth/crates/rpc/rpc-eth-types" }
150-
reth-rpc-convert = { path = "../reth/crates/rpc/rpc-convert" }
151-
reth-transaction-pool = { path = "../reth/crates/transaction-pool" }
152-
reth-zstd-compressors = { path = "../reth/crates/storage/zstd-compressors" }
153-
reth-trie-common = { path = "../reth/crates/trie/common" }
154-
reth-trie-db = { path = "../reth/crates/trie/db" }
155-
reth-trie = { path = "../reth/crates/trie/trie" }
156-
reth-stages-types = { path = "../reth/crates/stages/types" }
157-
reth-execution-types = { path = "../reth/crates/evm/execution-types" }
158-
reth-execution-errors = { path = "../reth/crates/evm/execution-errors" }
159-
reth-storage-api = { path = "../reth/crates/storage/storage-api" }
160-
reth-provider = { path = "../reth/crates/storage/provider" }
161-
reth-storage-errors = { path = "../reth/crates/storage/errors" }
162-
reth-e2e-test-utils = { path = "../reth/crates/e2e-test-utils" }
163-
reth-rpc-builder = { path = "../reth/crates/rpc/rpc-builder" }
164-
reth-optimism-flashblocks = { path = "../reth/crates/optimism/flashblocks" }
165-
reth-optimism-rpc = { path = "../reth/crates/optimism/rpc" }
118+
reth = { git = "https://github.com/rezbera/reth", branch = "rezbera/modular-flashblocks" }
119+
reth-rpc = { git = "https://github.com/rezbera/reth", branch = "rezbera/modular-flashblocks" }
120+
reth-basic-payload-builder = { git = "https://github.com/rezbera/reth", branch = "rezbera/modular-flashblocks" }
121+
reth-chainspec = { git = "https://github.com/rezbera/reth", branch = "rezbera/modular-flashblocks" }
122+
reth-cli = { git = "https://github.com/rezbera/reth", branch = "rezbera/modular-flashblocks" }
123+
reth-cli-commands = { git = "https://github.com/rezbera/reth", branch = "rezbera/modular-flashblocks" }
124+
reth-cli-util = { git = "https://github.com/rezbera/reth", branch = "rezbera/modular-flashblocks" }
125+
reth-db = { git = "https://github.com/rezbera/reth", branch = "rezbera/modular-flashblocks" }
126+
reth-engine-local = { git = "https://github.com/rezbera/reth", branch = "rezbera/modular-flashblocks" }
127+
reth-engine-primitives = { git = "https://github.com/rezbera/reth", branch = "rezbera/modular-flashblocks" }
128+
reth-errors = { git = "https://github.com/rezbera/reth", branch = "rezbera/modular-flashblocks" }
129+
reth-ethereum-cli = { git = "https://github.com/rezbera/reth", branch = "rezbera/modular-flashblocks" }
130+
reth-engine-tree = { git = "https://github.com/rezbera/reth", branch = "rezbera/modular-flashblocks" }
131+
reth-ethereum-engine-primitives = { git = "https://github.com/rezbera/reth", branch = "rezbera/modular-flashblocks" }
132+
reth-ethereum-payload-builder = { git = "https://github.com/rezbera/reth", branch = "rezbera/modular-flashblocks" }
133+
reth-ethereum-primitives = { git = "https://github.com/rezbera/reth", branch = "rezbera/modular-flashblocks" }
134+
reth-evm = { git = "https://github.com/rezbera/reth", branch = "rezbera/modular-flashblocks" }
135+
reth-evm-ethereum = { git = "https://github.com/rezbera/reth", branch = "rezbera/modular-flashblocks" }
136+
reth-network-peers = { git = "https://github.com/rezbera/reth", branch = "rezbera/modular-flashblocks" }
137+
reth-node-api = { git = "https://github.com/rezbera/reth", branch = "rezbera/modular-flashblocks" }
138+
reth-node-builder = { git = "https://github.com/rezbera/reth", branch = "rezbera/modular-flashblocks" }
139+
reth-node-core = { git = "https://github.com/rezbera/reth", branch = "rezbera/modular-flashblocks" }
140+
reth-payload-validator = { git = "https://github.com/rezbera/reth", branch = "rezbera/modular-flashblocks" }
141+
reth-node-ethereum = { git = "https://github.com/rezbera/reth", branch = "rezbera/modular-flashblocks" }
142+
reth-payload-primitives = { git = "https://github.com/rezbera/reth", branch = "rezbera/modular-flashblocks" }
143+
reth-primitives-traits = { git = "https://github.com/rezbera/reth", branch = "rezbera/modular-flashblocks" }
144+
reth-tracing = { git = "https://github.com/rezbera/reth", branch = "rezbera/modular-flashblocks" }
145+
reth-codecs = { git = "https://github.com/rezbera/reth", branch = "rezbera/modular-flashblocks" }
146+
reth-db-api = { git = "https://github.com/rezbera/reth", branch = "rezbera/modular-flashblocks" }
147+
reth-rpc-engine-api = { git = "https://github.com/rezbera/reth", branch = "rezbera/modular-flashblocks" }
148+
reth-rpc-eth-api = { git = "https://github.com/rezbera/reth", branch = "rezbera/modular-flashblocks" }
149+
reth-rpc-eth-types = { git = "https://github.com/rezbera/reth", branch = "rezbera/modular-flashblocks" }
150+
reth-rpc-convert = { git = "https://github.com/rezbera/reth", branch = "rezbera/modular-flashblocks" }
151+
reth-transaction-pool = { git = "https://github.com/rezbera/reth", branch = "rezbera/modular-flashblocks" }
152+
reth-zstd-compressors = { git = "https://github.com/rezbera/reth", branch = "rezbera/modular-flashblocks" }
153+
reth-trie-common = { git = "https://github.com/rezbera/reth", branch = "rezbera/modular-flashblocks" }
154+
reth-trie-db = { git = "https://github.com/rezbera/reth", branch = "rezbera/modular-flashblocks" }
155+
reth-trie = { git = "https://github.com/rezbera/reth", branch = "rezbera/modular-flashblocks" }
156+
reth-stages-types = { git = "https://github.com/rezbera/reth", branch = "rezbera/modular-flashblocks" }
157+
reth-execution-types = { git = "https://github.com/rezbera/reth", branch = "rezbera/modular-flashblocks" }
158+
reth-execution-errors = { git = "https://github.com/rezbera/reth", branch = "rezbera/modular-flashblocks" }
159+
reth-storage-api = { git = "https://github.com/rezbera/reth", branch = "rezbera/modular-flashblocks" }
160+
reth-provider = { git = "https://github.com/rezbera/reth", branch = "rezbera/modular-flashblocks" }
161+
reth-storage-errors = { git = "https://github.com/rezbera/reth", branch = "rezbera/modular-flashblocks" }
162+
reth-e2e-test-utils = { git = "https://github.com/rezbera/reth", branch = "rezbera/modular-flashblocks" }
163+
reth-rpc-builder = { git = "https://github.com/rezbera/reth", branch = "rezbera/modular-flashblocks" }
164+
reth-optimism-flashblocks = { git = "https://github.com/rezbera/reth", branch = "rezbera/modular-flashblocks" }
165+
reth-optimism-rpc = { git = "https://github.com/rezbera/reth", branch = "rezbera/modular-flashblocks" }
166+
reth-consensus-common = { git = "https://github.com/rezbera/reth", branch = "rezbera/modular-flashblocks" }

0 commit comments

Comments
 (0)