chore(sdk): make BlockBatchRecord generic over receipt (#12449)

This commit is contained in:
Emilia Hane
2024-11-14 17:10:46 +01:00
committed by GitHub
parent 217d9f7c12
commit b1635fcba2
3 changed files with 156 additions and 105 deletions

View File

@ -19,6 +19,7 @@ reth-execution-errors.workspace = true
reth-prune-types.workspace = true
reth-storage-api.workspace = true
reth-trie = { workspace = true, optional = true }
reth-primitives-traits.workspace = true
# alloy
alloy-eips.workspace = true
@ -41,13 +42,15 @@ std = [
"revm/std",
"alloy-eips/std",
"alloy-consensus/std",
"reth-primitives-traits/std",
]
test-utils = [
"dep:reth-trie",
"reth-primitives/test-utils",
"reth-trie?/test-utils",
"revm/test-utils",
"reth-prune-types/test-utils"
"reth-prune-types/test-utils",
"reth-primitives-traits/test-utils",
]
serde = [
"revm/serde",