Skip to content

Commit 97b366a

Browse files
committed
RichBlock -> WithOtherFields<Block>
1 parent 6a565a3 commit 97b366a

File tree

11 files changed

+224
-163
lines changed

11 files changed

+224
-163
lines changed

Cargo.lock

+26-26
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

+46-46
Original file line numberDiff line numberDiff line change
@@ -400,31 +400,31 @@ alloy-rlp = "0.3.4"
400400
alloy-sol-types = "0.7.2"
401401
alloy-trie = { version = "0.4", default-features = false }
402402

403-
alloy-consensus = { git = "https://github.com/alloy-rs/alloy", rev = "e2cc14f7" }
404-
alloy-eips = { git = "https://github.com/alloy-rs/alloy", rev = "e2cc14f7" }
405-
alloy-genesis = { git = "https://github.com/alloy-rs/alloy", rev = "e2cc14f7" }
406-
alloy-json-rpc = { git = "https://github.com/alloy-rs/alloy", rev = "e2cc14f7" }
407-
alloy-network = { git = "https://github.com/alloy-rs/alloy", rev = "e2cc14f7" }
408-
alloy-node-bindings = { git = "https://github.com/alloy-rs/alloy", rev = "e2cc14f7" }
403+
alloy-consensus = { git = "https://github.com/alloy-rs/alloy", rev = "cecf1b8" }
404+
alloy-eips = { git = "https://github.com/alloy-rs/alloy", rev = "cecf1b8" }
405+
alloy-genesis = { git = "https://github.com/alloy-rs/alloy", rev = "cecf1b8" }
406+
alloy-json-rpc = { git = "https://github.com/alloy-rs/alloy", rev = "cecf1b8" }
407+
alloy-network = { git = "https://github.com/alloy-rs/alloy", rev = "cecf1b8" }
408+
alloy-node-bindings = { git = "https://github.com/alloy-rs/alloy", rev = "cecf1b8" }
409409
alloy-provider = { version = "0.2.1", features = ["reqwest"], default-features = false }
410-
alloy-pubsub = { git = "https://github.com/alloy-rs/alloy", rev = "e2cc14f7" }
411-
alloy-rpc-client = { git = "https://github.com/alloy-rs/alloy", rev = "e2cc14f7" }
410+
alloy-pubsub = { git = "https://github.com/alloy-rs/alloy", rev = "cecf1b8" }
411+
alloy-rpc-client = { git = "https://github.com/alloy-rs/alloy", rev = "cecf1b8" }
412412
alloy-rpc-types = { version = "0.2.1", features = ["eth"], default-features = false }
413-
alloy-rpc-types-admin = { git = "https://github.com/alloy-rs/alloy", rev = "e2cc14f7" }
414-
alloy-rpc-types-anvil = { git = "https://github.com/alloy-rs/alloy", rev = "e2cc14f7" }
415-
alloy-rpc-types-beacon = { git = "https://github.com/alloy-rs/alloy", rev = "e2cc14f7" }
416-
alloy-rpc-types-engine = { git = "https://github.com/alloy-rs/alloy", rev = "e2cc14f7" }
417-
alloy-rpc-types-eth = { git = "https://github.com/alloy-rs/alloy", rev = "e2cc14f7" }
418-
alloy-rpc-types-mev = { git = "https://github.com/alloy-rs/alloy", rev = "e2cc14f7" }
419-
alloy-rpc-types-trace = { git = "https://github.com/alloy-rs/alloy", rev = "e2cc14f7" }
420-
alloy-rpc-types-txpool = { git = "https://github.com/alloy-rs/alloy", rev = "e2cc14f7" }
421-
alloy-serde = { git = "https://github.com/alloy-rs/alloy", rev = "e2cc14f7" }
422-
alloy-signer = { git = "https://github.com/alloy-rs/alloy", rev = "e2cc14f7" }
423-
alloy-signer-local = { git = "https://github.com/alloy-rs/alloy", rev = "e2cc14f7" }
413+
alloy-rpc-types-admin = { git = "https://github.com/alloy-rs/alloy", rev = "cecf1b8" }
414+
alloy-rpc-types-anvil = { git = "https://github.com/alloy-rs/alloy", rev = "cecf1b8" }
415+
alloy-rpc-types-beacon = { git = "https://github.com/alloy-rs/alloy", rev = "cecf1b8" }
416+
alloy-rpc-types-engine = { git = "https://github.com/alloy-rs/alloy", rev = "cecf1b8" }
417+
alloy-rpc-types-eth = { git = "https://github.com/alloy-rs/alloy", rev = "cecf1b8" }
418+
alloy-rpc-types-mev = { git = "https://github.com/alloy-rs/alloy", rev = "cecf1b8" }
419+
alloy-rpc-types-trace = { git = "https://github.com/alloy-rs/alloy", rev = "cecf1b8" }
420+
alloy-rpc-types-txpool = { git = "https://github.com/alloy-rs/alloy", rev = "cecf1b8" }
421+
alloy-serde = { git = "https://github.com/alloy-rs/alloy", rev = "cecf1b8" }
422+
alloy-signer = { git = "https://github.com/alloy-rs/alloy", rev = "cecf1b8" }
423+
alloy-signer-local = { git = "https://github.com/alloy-rs/alloy", rev = "cecf1b8" }
424424
alloy-transport = { version = "0.2.1" }
425425
alloy-transport-http = { version = "0.2.1", features = ["reqwest-rustls-tls"], default-features = false }
426-
alloy-transport-ipc = { git = "https://github.com/alloy-rs/alloy", rev = "e2cc14f7" }
427-
alloy-transport-ws = { git = "https://github.com/alloy-rs/alloy", rev = "e2cc14f7" }
426+
alloy-transport-ipc = { git = "https://github.com/alloy-rs/alloy", rev = "cecf1b8" }
427+
alloy-transport-ws = { git = "https://github.com/alloy-rs/alloy", rev = "cecf1b8" }
428428

429429
# op
430430
op-alloy-rpc-types = "0.1"
@@ -544,31 +544,31 @@ tempfile = "3.8"
544544
test-fuzz = "5"
545545

546546
[patch.crates-io]
547-
alloy-consensus = { git = "https://github.com/alloy-rs/alloy", rev = "e2cc14f7" }
548-
alloy-eips = { git = "https://github.com/alloy-rs/alloy", rev = "e2cc14f7" }
549-
alloy-genesis = { git = "https://github.com/alloy-rs/alloy", rev = "e2cc14f7" }
550-
alloy-json-rpc = { git = "https://github.com/alloy-rs/alloy", rev = "e2cc14f7" }
551-
alloy-network = { git = "https://github.com/alloy-rs/alloy", rev = "e2cc14f7" }
552-
alloy-node-bindings = { git = "https://github.com/alloy-rs/alloy", rev = "e2cc14f7" }
553-
alloy-provider = { git = "https://github.com/alloy-rs/alloy", rev = "e2cc14f7" }
554-
alloy-pubsub = { git = "https://github.com/alloy-rs/alloy", rev = "e2cc14f7" }
555-
alloy-rpc-client = { git = "https://github.com/alloy-rs/alloy", rev = "e2cc14f7" }
556-
alloy-rpc-types = { git = "https://github.com/alloy-rs/alloy", rev = "e2cc14f7" }
557-
alloy-rpc-types-admin = { git = "https://github.com/alloy-rs/alloy", rev = "e2cc14f7" }
558-
alloy-rpc-types-anvil = { git = "https://github.com/alloy-rs/alloy", rev = "e2cc14f7" }
559-
alloy-rpc-types-beacon = { git = "https://github.com/alloy-rs/alloy", rev = "e2cc14f7" }
560-
alloy-rpc-types-engine = { git = "https://github.com/alloy-rs/alloy", rev = "e2cc14f7" }
561-
alloy-rpc-types-eth = { git = "https://github.com/alloy-rs/alloy", rev = "e2cc14f7" }
562-
alloy-rpc-types-mev = { git = "https://github.com/alloy-rs/alloy", rev = "e2cc14f7" }
563-
alloy-rpc-types-trace = { git = "https://github.com/alloy-rs/alloy", rev = "e2cc14f7" }
564-
alloy-rpc-types-txpool = { git = "https://github.com/alloy-rs/alloy", rev = "e2cc14f7" }
565-
alloy-serde = { git = "https://github.com/alloy-rs/alloy", rev = "e2cc14f7" }
566-
alloy-signer = { git = "https://github.com/alloy-rs/alloy", rev = "e2cc14f7" }
567-
alloy-signer-local = { git = "https://github.com/alloy-rs/alloy", rev = "e2cc14f7" }
568-
alloy-transport = { git = "https://github.com/alloy-rs/alloy", rev = "e2cc14f7" }
569-
alloy-transport-http = { git = "https://github.com/alloy-rs/alloy", rev = "e2cc14f7" }
570-
alloy-transport-ipc = { git = "https://github.com/alloy-rs/alloy", rev = "e2cc14f7" }
571-
alloy-transport-ws = { git = "https://github.com/alloy-rs/alloy", rev = "e2cc14f7" }
547+
alloy-consensus = { git = "https://github.com/alloy-rs/alloy", rev = "cecf1b8" }
548+
alloy-eips = { git = "https://github.com/alloy-rs/alloy", rev = "cecf1b8" }
549+
alloy-genesis = { git = "https://github.com/alloy-rs/alloy", rev = "cecf1b8" }
550+
alloy-json-rpc = { git = "https://github.com/alloy-rs/alloy", rev = "cecf1b8" }
551+
alloy-network = { git = "https://github.com/alloy-rs/alloy", rev = "cecf1b8" }
552+
alloy-node-bindings = { git = "https://github.com/alloy-rs/alloy", rev = "cecf1b8" }
553+
alloy-provider = { git = "https://github.com/alloy-rs/alloy", rev = "cecf1b8" }
554+
alloy-pubsub = { git = "https://github.com/alloy-rs/alloy", rev = "cecf1b8" }
555+
alloy-rpc-client = { git = "https://github.com/alloy-rs/alloy", rev = "cecf1b8" }
556+
alloy-rpc-types = { git = "https://github.com/alloy-rs/alloy", rev = "cecf1b8" }
557+
alloy-rpc-types-admin = { git = "https://github.com/alloy-rs/alloy", rev = "cecf1b8" }
558+
alloy-rpc-types-anvil = { git = "https://github.com/alloy-rs/alloy", rev = "cecf1b8" }
559+
alloy-rpc-types-beacon = { git = "https://github.com/alloy-rs/alloy", rev = "cecf1b8" }
560+
alloy-rpc-types-engine = { git = "https://github.com/alloy-rs/alloy", rev = "cecf1b8" }
561+
alloy-rpc-types-eth = { git = "https://github.com/alloy-rs/alloy", rev = "cecf1b8" }
562+
alloy-rpc-types-mev = { git = "https://github.com/alloy-rs/alloy", rev = "cecf1b8" }
563+
alloy-rpc-types-trace = { git = "https://github.com/alloy-rs/alloy", rev = "cecf1b8" }
564+
alloy-rpc-types-txpool = { git = "https://github.com/alloy-rs/alloy", rev = "cecf1b8" }
565+
alloy-serde = { git = "https://github.com/alloy-rs/alloy", rev = "cecf1b8" }
566+
alloy-signer = { git = "https://github.com/alloy-rs/alloy", rev = "cecf1b8" }
567+
alloy-signer-local = { git = "https://github.com/alloy-rs/alloy", rev = "cecf1b8" }
568+
alloy-transport = { git = "https://github.com/alloy-rs/alloy", rev = "cecf1b8" }
569+
alloy-transport-http = { git = "https://github.com/alloy-rs/alloy", rev = "cecf1b8" }
570+
alloy-transport-ipc = { git = "https://github.com/alloy-rs/alloy", rev = "cecf1b8" }
571+
alloy-transport-ws = { git = "https://github.com/alloy-rs/alloy", rev = "cecf1b8" }
572572
revm = { git = "https://github.com/bluealloy/revm", rev = "caadc71" }
573573
revm-primitives = { git = "https://github.com/bluealloy/revm", rev = "caadc71" }
574574
revm-inspectors = { git = "https://github.com/klkvr/evm-inspectors", rev = "b51baec" }

0 commit comments

Comments
 (0)