diff --git a/barretenberg/ts/src/barretenberg/backend.ts b/barretenberg/ts/src/barretenberg/backend.ts index c1c939be215..951181a3bf8 100644 --- a/barretenberg/ts/src/barretenberg/backend.ts +++ b/barretenberg/ts/src/barretenberg/backend.ts @@ -230,7 +230,7 @@ export class UltraHonkBackend { async getSolidityVerifier(): Promise { await this.instantiate(); await this.api.acirWriteVkUltraHonk(this.acirUncompressedBytecode); - return await this.api.honkSolidityVerifier(this.acirUncompressedBytecode); + return await this.api.getHonkSolidityVerifier(this.acirUncompressedBytecode); } // TODO(https://github.com/noir-lang/noir/issues/5661): Update this to handle Honk recursive aggregation in the browser once it is ready in the backend itself