aboutsummaryrefslogtreecommitdiff
path: root/dashboard/dashboard.go
diff options
context:
space:
mode:
Diffstat (limited to 'dashboard/dashboard.go')
-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
+}