From 0ada8c47427bfe604024d383ed7a250b04c82fee Mon Sep 17 00:00:00 2001 From: Özgür Kesim Date: Thu, 21 Nov 2024 17:13:47 +0100 Subject: refactor: lifted nizk/ up and away --- auction.go | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) (limited to 'auction.go') diff --git a/auction.go b/auction.go index a4e9272..15e2d15 100644 --- a/auction.go +++ b/auction.go @@ -10,8 +10,6 @@ import ( "fmt" "log/slog" "time" - - "kesim.org/seal/nizk" ) type Type int @@ -111,13 +109,13 @@ type auction struct { observer Observer // The commitments we received from the bidders. - bidders map[string][]*nizk.Commitment + bidders map[string][]*Commitment // sorted list of the bidders. bidder_ids []string // Stage 1 data per round - stage1 []*nizk.Stage + stage1 []*Stage log *slog.Logger } -- cgit v1.2.3