Skip to content

Commit b38e3ce

Browse files
authored
fix: adhoc fix external prover (#81)
1 parent ac63e12 commit b38e3ce

File tree

1 file changed

+2
-5
lines changed

1 file changed

+2
-5
lines changed

src/prover/builder.rs

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -43,11 +43,8 @@ where
4343
eyre::bail!("failed to get vk: {}", error);
4444
}
4545

46-
let prover_provider_type = if self.proving_service.is_local() {
47-
ProverProviderType::Internal
48-
} else {
49-
ProverProviderType::External
50-
};
46+
// FIXME: should derive from `self.proving_service.is_local()`, but coordinator has a bug when handling external provers
47+
let prover_provider_type = ProverProviderType::Internal;
5148

5249
let key_signers: Result<Vec<_>, _> = (0..self.cfg.prover.n_workers)
5350
.map(|i| {

0 commit comments

Comments
 (0)