From 65655e3646e04d7b0bf4be0eb94998faba602bd4 Mon Sep 17 00:00:00 2001
From: Mark Spanbroek <mark@spanbroek.net>
Date: Tue, 23 Jan 2024 13:26:05 +0100
Subject: [PATCH] Refactor verifier contract: Formatting

---
 contracts/Groth16.sol | 14 +++++++-------
 1 file changed, 7 insertions(+), 7 deletions(-)

diff --git a/contracts/Groth16.sol b/contracts/Groth16.sol
index a425396..649bc0d 100644
--- a/contracts/Groth16.sol
+++ b/contracts/Groth16.sol
@@ -2,17 +2,17 @@
 pragma solidity 0.8.23;
 
 struct G1Point {
-    uint x;
-    uint y;
+  uint x;
+  uint y;
 }
 
 struct G2Point {
-    uint[2] x;
-    uint[2] y;
+  uint[2] x;
+  uint[2] y;
 }
 
 struct Groth16Proof {
-    G1Point a;
-    G2Point b;
-    G1Point c;
+  G1Point a;
+  G2Point b;
+  G1Point c;
 }