Closed frisitano closed 1 year ago
I think the outputs are only going to be checked when the user wants to verify, right?
So do we need an overflow_addrs
for every verification?
I think the outputs are only going to be checked when the user wants to verify, right?
So do we need an
overflow_addrs
for every verification?
Yes that's correct and in some instances, like the advice_provider example, it's not needed for verification. This PR changes the requirement of overflow_addrs
such that it is optional.
overflow_addrs
should benotRequired()
as we do not always need it to verify a proof. This PR modifies theyup
schema to reflect this. This impacts proof verification and can be recreated using theadvice_provider
example.