AddProofs updated to check via PCZTRequiresSaplingProofs

This commit is contained in:
Lukas Korba 2025-02-17 13:33:14 +01:00
parent eac59e77d9
commit 14b9712c88
1 changed files with 6 additions and 1 deletions

View File

@ -428,7 +428,12 @@ public class SDKSynchronizer: Synchronizer {
}
public func addProofsToPCZT(pczt: Pczt) async throws -> Pczt {
try await initializer.rustBackend.addProofsToPCZT(
if await initializer.rustBackend.PCZTRequiresSaplingProofs(pczt: pczt) {
let saplingParametersHandler = initializer.container.resolve(SaplingParametersHandler.self)
try await saplingParametersHandler.handleIfNeeded()
}
return try await initializer.rustBackend.addProofsToPCZT(
pczt: pczt
)
}