aboutsummaryrefslogtreecommitdiff
path: root/dashboard
diff options
context:
space:
mode:
authorÖzgür Kesim <oec@kesim.org>2024-11-11 21:28:12 +0100
committerÖzgür Kesim <oec@kesim.org>2024-11-11 21:28:12 +0100
commit4adec77feea7e9ec45ca43084383d85de450518b (patch)
tree446ecf80204c6a1b755547e121f1f8450c99f6ae /dashboard
parent7813100e5429ca486d6310f8a04d7a0d11325f2e (diff)
refactoring in progress
Diffstat (limited to 'dashboard')
-rw-r--r--dashboard/dashboard.go6
1 files changed, 3 insertions, 3 deletions
diff --git a/dashboard/dashboard.go b/dashboard/dashboard.go
index 6f384f9..b26277d 100644
--- a/dashboard/dashboard.go
+++ b/dashboard/dashboard.go
@@ -7,7 +7,7 @@ import (
"encoding/json"
"kesim.org/seal"
- "kesim.org/seal/nizk/commit"
+ "kesim.org/seal/nizk"
)
type Dashboard interface {
@@ -27,7 +27,7 @@ type SignedMessage struct {
}
type SignedCommitment struct {
- *commit.Commitment
+ *nizk.Commitment
Signature []byte
}
@@ -131,4 +131,4 @@ func (s *SignedCommitment) Verify(pubkey ed25519.PublicKey) bool {
func Pub2String(pubkey ed25519.PublicKey) string {
return base32.StdEncoding.EncodeToString(pubkey)
-} \ No newline at end of file
+}