aboutsummaryrefslogtreecommitdiff
path: root/dashboard/dashboard.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 /dashboard/dashboard.go
parent32cee46e39527a09504615b822cc61969c46184d (diff)
refactor: lifted nizk/ up and awayHEADwip
Diffstat (limited to 'dashboard/dashboard.go')
-rw-r--r--dashboard/dashboard.go3
1 files changed, 1 insertions, 2 deletions
diff --git a/dashboard/dashboard.go b/dashboard/dashboard.go
index b26277d..7a75e9c 100644
--- a/dashboard/dashboard.go
+++ b/dashboard/dashboard.go
@@ -7,7 +7,6 @@ import (
"encoding/json"
"kesim.org/seal"
- "kesim.org/seal/nizk"
)
type Dashboard interface {
@@ -27,7 +26,7 @@ type SignedMessage struct {
}
type SignedCommitment struct {
- *nizk.Commitment
+ *seal.Commitment
Signature []byte
}