Skip to content

Commit 3364963

Browse files
Use RPCProvider type from types mod
1 parent 4986c42 commit 3364963

File tree

1 file changed

+2
-2
lines changed
  • aggregation_mode/src/backend

1 file changed

+2
-2
lines changed

aggregation_mode/src/backend/mod.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ use risc0_ethereum_contracts::encode_seal;
2626
use std::thread::sleep;
2727
use std::{str::FromStr, time::Duration};
2828
use tracing::{error, info, warn};
29-
use types::{AlignedProofAggregationService, AlignedProofAggregationServiceContract};
29+
use types::{AlignedProofAggregationService, AlignedProofAggregationServiceContract, RPCProvider};
3030

3131
#[derive(Debug)]
3232
pub enum AggregatedProofSubmissionError {
@@ -48,7 +48,7 @@ pub struct ProofAggregator {
4848
proof_aggregation_service: AlignedProofAggregationServiceContract,
4949
fetcher: ProofsFetcher,
5050
config: Config,
51-
rpc_provider: dyn Provider<EthereumWallet>,
51+
rpc_provider: RPCProvider,
5252
}
5353

5454
impl ProofAggregator {

0 commit comments

Comments
 (0)