Skip to content

Commit 8a8b302

Browse files
committed
use alloy rlp feature instead of alloy-rlp crate
1 parent cf770a2 commit 8a8b302

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ path = "bin/submit_transaction.rs"
2424
[dependencies]
2525
zenith-types = "0.13"
2626

27-
alloy = { version = "0.7.3", features = ["full", "json-rpc", "signer-aws", "rpc-types-mev"] }
27+
alloy = { version = "0.7.3", features = ["full", "json-rpc", "signer-aws", "rpc-types-mev", "rlp"] }
2828
alloy-rlp = { version = "0.3.4" }
2929

3030
aws-config = "1.1.7"

src/tasks/block.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ use alloy::{
77
eips::eip2718::Decodable2718,
88
primitives::{keccak256, Bytes, B256},
99
providers::Provider as _,
10+
rlp::Buf,
1011
};
11-
use alloy_rlp::Buf;
1212
use std::time::{SystemTime, UNIX_EPOCH};
1313
use std::{sync::OnceLock, time::Duration};
1414
use tokio::{sync::mpsc, task::JoinHandle};

0 commit comments

Comments
 (0)