aboutsummaryrefslogtreecommitdiff
path: root/auction.go
diff options
context:
space:
mode:
authorÖzgür Kesim <oec@codeblau.de>2024-11-21 17:13:47 +0100
committerÖzgür Kesim <oec@codeblau.de>2024-11-21 17:13:47 +0100
commit0ada8c47427bfe604024d383ed7a250b04c82fee (patch)
tree4bc5e6432512a8060308413d303b675b0658bd1b /auction.go
parent32cee46e39527a09504615b822cc61969c46184d (diff)
refactor: lifted nizk/ up and awayHEADwip
Diffstat (limited to 'auction.go')
-rw-r--r--auction.go6
1 files changed, 2 insertions, 4 deletions
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
}