From c5e42fdc829ac36d3cbee659c3c3dbc74ec98075 Mon Sep 17 00:00:00 2001 From: Alexey Osipov Date: Tue, 22 Nov 2022 10:51:29 +0300 Subject: [PATCH] Rename x to z in csharp bindings for verify_kzg_proof --- bindings/csharp/Ckzg.Bindings/Ckzg.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bindings/csharp/Ckzg.Bindings/Ckzg.cs b/bindings/csharp/Ckzg.Bindings/Ckzg.cs index 67810d2..142a452 100644 --- a/bindings/csharp/Ckzg.Bindings/Ckzg.cs +++ b/bindings/csharp/Ckzg.Bindings/Ckzg.cs @@ -58,13 +58,13 @@ public class Ckzg /// Verify the proof by point evaluation for the given commitment /// /// Commitment - /// X + /// Z /// Y /// Proof /// Trusted setup settings /// Returns error code or 0 if the proof is correct [DllImport("ckzg", EntryPoint = "verify_kzg_proof_wrap", CallingConvention = CallingConvention.Cdecl)] // returns 0 on success - public unsafe static extern int VerifyKzgProof(byte* commitment, byte* x, byte* y, byte* proof, IntPtr ts); + public unsafe static extern int VerifyKzgProof(byte* commitment, byte* z, byte* y, byte* proof, IntPtr ts); /// /// Load trusted setup settings from file