From 4adec77feea7e9ec45ca43084383d85de450518b Mon Sep 17 00:00:00 2001 From: Özgür Kesim Date: Mon, 11 Nov 2024 21:28:12 +0100 Subject: refactoring in progress --- auction.go | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) (limited to 'auction.go') diff --git a/auction.go b/auction.go index 053acdd..cf46acc 100644 --- a/auction.go +++ b/auction.go @@ -11,8 +11,7 @@ import ( "log/slog" "time" - "kesim.org/seal/nizk/commit" - "kesim.org/seal/nizk/stage1" + "kesim.org/seal/nizk" ) type Type int @@ -112,13 +111,13 @@ type auction struct { observer Observer // The commitments we received from the bidders. - bidders map[string][]*commit.Commitment + bidders map[string][]*nizk.Commitment // sorted list of the bidders. bidder_ids []string // Stage 1 data per round - stage1 []*stage1.Statement + stage1 []*nizk.Stage1 log *slog.Logger } -- cgit v1.2.3