I’m confused on how we should write code to interact with LocalBlockchain with proofs disabled.
specifically when we get to compile and prove. do you have to do something like this?:
if (proofs) {
await txn.prove();
}
I'm finding this errors when proofs are false, as this line txn.prove() doesn’t get hit.
If it’s required, what exactly is it doing when proofs are disabled?
Thanks for the help.