Skip to content

Commit

Permalink
[WIP] update BasicProof
Browse files Browse the repository at this point in the history
  • Loading branch information
demonsh committed May 1, 2022
1 parent a567def commit 668fa2c
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions verifiable/proof.go
Original file line number Diff line number Diff line change
@@ -1,8 +1,10 @@
package verifiable

import (
mt "github.com/iden3/go-merkletree-sql"
"math/big"

core "github.com/iden3/go-iden3-core"
mt "github.com/iden3/go-merkletree-sql"
)

// MTPProof JSON-LD merkle tree proof
Expand Down Expand Up @@ -37,8 +39,9 @@ type SignatureProof struct {
type BasicProof struct {
Type string `json:"@type"`
Issuer string `json:"issuer"`
HIndex string `json:"h_index"`
HValue string `json:"h_value"`
//HIndex string `json:"h_index"`
//HValue string `json:"h_value"`
IssuerAuthClaim *core.Claim `json:"claim"`
}

// MTP is merkle tree mtp but in lower case and with type
Expand Down

0 comments on commit 668fa2c

Please sign in to comment.