Remove unnecessary 'params' argument to MainPodBuilder::prove (#373)

This commit is contained in:
Rob Knight 2025-07-30 19:39:10 +01:00 committed by GitHub
parent f10a5adb41
commit ae39ff307d
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
8 changed files with 41 additions and 41 deletions

View file

@ -351,7 +351,7 @@ pub fn great_boy_pod_builder(
Ok(great_boy)
}
pub fn great_boy_pod_full_flow() -> Result<(Params, MainPodBuilder)> {
pub fn great_boy_pod_full_flow() -> Result<MainPodBuilder> {
let params = Params {
max_input_signed_pods: 6,
max_input_recursive_pods: 0,
@ -416,7 +416,7 @@ pub fn great_boy_pod_full_flow() -> Result<(Params, MainPodBuilder)> {
&alice,
)?;
Ok((params, builder))
Ok(builder)
}
// Tickets