Closed tomyrd closed 2 weeks ago
In general this looks good to me, but is this Arc
still needed in the context of the client?
is this Arc still needed in the context of the client?
It's needed to be able to derive the Clone
trait. If we don't need it maybe I can remove it.
I removed the Arc
along with the Clone
trait. The remote prover is already wrapped with an Arc
in the client so it didn't need the trait.
Sounds like the best option, to let the client/user choose better to add an Arc or not.
To make the remote prover
Send + Sync
we need to remove the internal use ofRefCell