We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4986c42 commit 3364963Copy full SHA for 3364963
1 file changed
aggregation_mode/src/backend/mod.rs
@@ -26,7 +26,7 @@ use risc0_ethereum_contracts::encode_seal;
26
use std::thread::sleep;
27
use std::{str::FromStr, time::Duration};
28
use tracing::{error, info, warn};
29
-use types::{AlignedProofAggregationService, AlignedProofAggregationServiceContract};
+use types::{AlignedProofAggregationService, AlignedProofAggregationServiceContract, RPCProvider};
30
31
#[derive(Debug)]
32
pub enum AggregatedProofSubmissionError {
@@ -48,7 +48,7 @@ pub struct ProofAggregator {
48
proof_aggregation_service: AlignedProofAggregationServiceContract,
49
fetcher: ProofsFetcher,
50
config: Config,
51
- rpc_provider: dyn Provider<EthereumWallet>,
+ rpc_provider: RPCProvider,
52
}
53
54
impl ProofAggregator {
0 commit comments