aboutsummaryrefslogtreecommitdiff
path: root/auction.go
diff options
context:
space:
mode:
Diffstat (limited to 'auction.go')
-rw-r--r--auction.go7
1 files changed, 3 insertions, 4 deletions
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
}