You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
tracing::info!("Not starting keeper service: no keeper private key specified. Please add one to the config if you would like to run the keeper service.")
101
101
}
102
102
103
-
let keeper_replica_config = config.keeper.replica_config.clone();
104
-
let keeper_run_config = config.keeper.run_config.clone();
105
-
106
103
let chains:Arc<RwLock<HashMap<ChainId,ApiBlockChainState>>> = Arc::new(RwLock::new(
let contract_call = contract.withdraw_as_fee_manager(provider_address, fees);
119
-
send_and_confirm(contract_call).await?;
120
-
}else{
121
-
if provider_info.fee_manager != wallet.address(){
122
-
returnErr(anyhow!("Fee manager for provider {:?} is not the keeper wallet and no fee manager private key is configured. Fee manager: {:?} Keeper: {:?}", provider_address, provider_info.fee_manager, wallet.address()));
123
-
}
117
+
let contract_call = contract.withdraw_as_fee_manager(provider_address, fees);
118
+
send_and_confirm(contract_call).await?;
119
+
120
+
let fee_manager_wallet = LocalWallet::from_str(&fee_manager_private_key)
0 commit comments