We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bdacfc6 commit d51ca2fCopy full SHA for d51ca2f
1 file changed
aggregation_mode/src/backend/mod.rs
@@ -53,7 +53,7 @@ pub struct ProofAggregator {
53
54
impl ProofAggregator {
55
pub fn new(config: Config) -> Self {
56
- let rpc_url = config.eth_rpc_url.parse().expect("RPC URL should be valid");
+ let rpc_url: reqwest::Url = config.eth_rpc_url.parse().expect("RPC URL should be valid");
57
let signer = LocalSigner::decrypt_keystore(
58
config.ecdsa.private_key_store_path.clone(),
59
config.ecdsa.private_key_store_password.clone(),
0 commit comments